mirror of https://github.com/cheat/cheat.git
Add --user and --upgrade options
This commit is contained in:
parent
3d90b26b04
commit
49e1fc46f4
|
@ -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 New Issue