mirror of
https://github.com/Erreur32/cheat.git
synced 2024-12-22 21:52:12 +01:00
Add --user and --upgrade options
This commit is contained in:
parent
3d90b26b04
commit
49e1fc46f4
1 changed files with 6 additions and 0 deletions
|
@ -4,6 +4,12 @@ pip search SomePackage
|
|||
# Install some packages
|
||||
pip install SomePackage
|
||||
|
||||
# Install some package in user space
|
||||
pip install --user SomePackage
|
||||
|
||||
# Upgrade some package
|
||||
pip install --upgrade SomePackage
|
||||
|
||||
# Output and install packages in a requirement file
|
||||
pip freeze > requirements.txt
|
||||
pip install -r requirements.txt
|
||||
|
|
Loading…
Reference in a new issue