+ 3
How can i upgrade pip?[SOLVED]
It keeps saying warning a newer version of pip is available ,you should consider upgrading it https://code.sololearn.com/c4CLQgeNc7E2/?ref=app
5 Answers
+ 5
def install():
cmd = "pip install --upgrade pip bs4"
rv = subprocess.call(cmd, shell=True)
install()
You can't update it permanently, it's blocked and fails. It does seem to run in a shell though.
+ 3
See a detailed description in link below (Windows)
https://datatofish.com/upgrade-pip/
+ 2
Last time I encountered this sololearn couldn't handle bigger size, but it again allows you freedom of size [to certain point] :)
https://code.sololearn.com/cvdvAGGqi8g5/?ref=app
+ 1
Thanks to everyone who responded early!
0
upgrade PIP in Windows:
python -m pip install --upgrade pip
To install pip, download get-pip.py via https://bootstrap.pypa.io/get-pip.py to a directory on your computer. After that, navigate into the directory in your command prompt window and run
python get-pip.py
http://net-informations.com/python/iq/pip.htm