Answers for "pip install all outdated"

3

update all modules python in cmd

import pkg_resources
from subprocess import call

packages = [dist.project_name for dist in pkg_resources.working_set]
call("pip install --upgrade " + ' '.join(packages), shell=True)
Posted by: Guest on December-15-2020
-2

update all modules python

pip install [package] --upgrade
Posted by: Guest on March-11-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language