Answers for "pip reinstall all packages"

3

pip uninstall all packages

pip uninstall -y -r <(pip freeze)
Posted by: Guest on July-27-2021
0

Update all packages using pip on Windows

# Open your command shell and enter the below command. This will upgrade all packages system-wide to the latest or newer version available in the Python Package Index (PyPI)
pip freeze | %{$_.split('==')[0]} | %{pip install --upgrade $_}

#outputs the list of installed packages
pip freeze > requirements.txt

#updates all packages
pip install -r requirements.txt --upgrade
Posted by: Guest on September-10-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language