DEV Community

Anurag Roy
Anurag Roy

Posted on • Updated on

install all modules using only this pip command

pip freeze | %{$_.split('==')[0]} | %{pip install --upgrade $_}

Top comments (0)