Difference between revisions of "Python:Install"

From wiki
Jump to navigation Jump to search
(Created page with "pip is the python program for module installation and upgrade. Wheels are preconfigured packages that allow easy off-line installation. They usually have a .whl extension. ;...")
 
Line 5: Line 5:
 
;pip install <wheelfile>  
 
;pip install <wheelfile>  
 
:install from <wheelfile>
 
:install from <wheelfile>
 +
 +
;pip uninstall <package>
 +
:uninstall <package>

Revision as of 22:26, 25 March 2020

pip is the python program for module installation and upgrade.

Wheels are preconfigured packages that allow easy off-line installation. They usually have a .whl extension.

pip install <wheelfile>
install from <wheelfile>
pip uninstall <package>
uninstall <package>