history This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== Upgradeing all packages ====== [[https://www.studytonight.com/python-howtos/upgrade-all-packages-in-python-using-pip|studytonight.com]] <code> #outputs the list of installed packages pip freeze > requirements.txt #updates all packages pip install -r requirements.txt --upgrade </code>