pip update method (win and linux) version

Windows version pip update method:

python -m pip install --upgrade pip

Linux version pip update method:

You need to use the command according to the corresponding [python] version:

base version

python -m pip install --upgrade pip

python2 version

python2 -m pip install --upgrade pip

python3 version

python3 -m pip install --upgrade pip

Guess you like

Origin blog.csdn.net/feng8403000/article/details/123934443