aboutsummaryrefslogtreecommitdiff
path: root/cheat/.cheat/pip
diff options
context:
space:
mode:
authorneodarz <neodarz@neodarz.net>2019-03-31 23:13:43 +0200
committerneodarz <neodarz@neodarz.net>2019-03-31 23:13:59 +0200
commitdf7a1f481e26f9c495db76809f7e9b7f7b6e30d3 (patch)
tree08968f70b4b6eeca0997c8f95e709067d6bea106 /cheat/.cheat/pip
parentd94c1d0d81cfa007a6ef3ad81f4c4f08e74dd781 (diff)
downloaddotfiles_ascii-df7a1f481e26f9c495db76809f7e9b7f7b6e30d3.tar.xz
dotfiles_ascii-df7a1f481e26f9c495db76809f7e9b7f7b6e30d3.zip
Add more cheat
Diffstat (limited to '')
-rw-r--r--cheat/.cheat/pip34
1 files changed, 34 insertions, 0 deletions
diff --git a/cheat/.cheat/pip b/cheat/.cheat/pip
new file mode 100644
index 0000000..9b438ea
--- /dev/null
+++ b/cheat/.cheat/pip
@@ -0,0 +1,34 @@
+# Search for packages
+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
+
+# Show details of a package
+pip show SomePackage
+
+# List outdated packages
+pip list --outdated
+
+# Upgrade all outdated packages, thanks to http://stackoverflow.com/a/3452888
+pip freeze --local | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip install -U
+
+# Upgrade outdated packages on latest version of pip
+pip list --outdated --format=freeze | cut -d = -f 1 | xargs -n1 pip install -U
+
+# Install specific version of a package
+pip install -I SomePackage1==1.1.0 'SomePackage2>=1.0.4'
+
+# Best pratice to use pip
+# source: https://linuxfr.org/users/oliver_h/journaux/quelques-bonnes-pratiques-python-pour-2019
+python3 -m pip <same syntax as above>