1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00

Add initial getting-started scaffold

This commit is contained in:
Pradyun Gedam 2021-05-21 16:13:40 +01:00
parent 9fb3b7c795
commit 86c79441e9
No known key found for this signature in database
GPG key ID: FF99710C4332258E

View file

@ -0,0 +1,25 @@
# Getting Started
To get started with using pip, you should install Python on your system.
## Checking if you have a working pip
The best way to check if you have a working pip installation is to run:
```{pip-cli}
$ pip --version
pip X.Y.Z from ... (python X.Y)
```
If that worked, congratulations! You have a working pip in your environment.
If you got output that does not look like the sample above, read on -- the rest
of this page has information about how to install pip within a Python
environment that doesn't have it.
## Next Steps
As a next step, you'll want to read the
["Installing Packages"](pypug:tutorials/installing-packages) tutorial on
packaging.python.org. That tutorial will guide you through the basics of using
pip for installing packages.