This commit is contained in:
Dobromir Popov
2024-10-07 21:34:20 +03:00
parent 9e540fea8c
commit e993428fd1
4 changed files with 49 additions and 0 deletions

16
python/pip_conda.md Normal file
View File

@ -0,0 +1,16 @@
pip list --outdated
#> pip list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip install -U
PS> pip list --outdated --format=json | ConvertFrom-Json | ForEach-Object { pip install --upgrade $_.name }
pip freeze > requirements.txt
pip install -r requirements.txt