Closed uranusjr closed 6 years ago
This prevents Windows from erroring if the package to install contains a dependency to pip. On Windows you can’t write to a running executable so pip install -U pip will fail. The official solution is to do python -m pip install -U pip instead.
pip install -U pip
python -m pip install -U pip
This prevents Windows from erroring if the package to install contains a dependency to pip. On Windows you can’t write to a running executable so
pip install -U pip
will fail. The official solution is to dopython -m pip install -U pip
instead.