Thursday, June 25, 2020

PIP Package Manager

PIP

PIP is a package manager. You should check to see if it's installed by going to your python script subdirectory and typing

 pip --version. 

Version 3.4 and newer should already have PIP, but if not, go here to get it:



Typical ways to use IP would be: 

pip install package-name
pip uninstall package-name
pip list package-name

You can find packages at pypi.org

Package are really just another name for modules, so use import to bring in the package functionality into your code.



No comments:

Post a Comment