Answers for "pip update --all"

1

update every python library

(Do it in windows powershell)

pip freeze | %{$_.split('==')[0]} | %{pip install --upgrade $_}
Posted by: Guest on November-20-2020
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

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language