Python PIP Packages
Download a Package
Downloading a package is very easy.
Open the command line interface and tell PIP to download the package you want.
Navigate your command line to the location of Python's script directory, and type the following:
Example
Download a package named "camelcase":
Now you have downloaded and installed your first package!
Using a Package
Once the package is installed, it is ready to use.
Import the "camelcase" package into your project.
Example
Import and use "camelcase":
c = camelcase.CamelCase()
txt = "hello world"
print(c.hump(txt))
Find Packages
Find more packages at https://pypi.org/.
List Packages
Use the list command to list all the packages installed on your system:
Example
List installed packages:
Result:
-----------------------
camelcase 0.2
mysql-connector 2.1.6
pip 18.1
pymongo 3.6.1
setuptools 39.0.1