Loading lesson path
PIP is a package manager for Python packages, or modules if you like.
If you have Python version 3.4 or later, PIP is included by default.
A package contains all the files you need for a module. Modules are Python code libraries you can include in your project.
Navigate your command line to the location of Python's script directory, and type the following:
C:\Users\
Formula
\AppData\Local\Programs\Python\Python36 - 32\Scripts > pip -- versionIf you do not have PIP installed, you can download and install it from this page:
Formula
https://pypi.org/project/pip/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:
Download a package named "camelcase": C:\Users\
Formula
\AppData\Local\Programs\Python\Python36 - 32\Scripts > pip install camelcaseNow you have downloaded and installed your first package!
Once the package is installed, it is ready to use. Import the "camelcase" package into your project.
Import and use "camelcase":
Formula
import camelcase c = camelcase.CamelCase()txt = "hello world"
print(c.hump(txt))Find more packages at https://pypi.org/.
Use the uninstall command to remove a package:
Uninstall the package named "camelcase": C:\Users\
Formula
\AppData\Local\Programs\Python\Python36 - 32\Scripts > pip uninstall camelcaseThe PIP Package Manager will ask you to confirm that you want to remove the camelcase package:
Formula
Uninstalling camelcase - 02.1:c:\users\
Formula
\appdata\local\programs\python\python36 - 32\lib\site - packages\camelcase - 0.2 - py3.6.egg - info c:\users\Formula
\appdata\local\programs\python\python36 - 32\lib\site - packages\camelcase\*
Proceed (y/n)?and the package will be removed.
Use the list command to list all the packages installed on your system:
C:\Users\