any idea how to update python PIP on a windows box?

前端 未结 6 1235
囚心锁ツ
囚心锁ツ 2020-12-23 08:53

pip install --upgrade pip doesn\'t work because the windows FS is brain damaged and won\'t let you delete an open file.

I\'ve tried setting my environme

6条回答
  •  醉酒成梦
    2020-12-23 09:42

    Run pip as a script, using python as the main executable.

    python -m pip install -U pip
    

提交回复
热议问题