在 Windows 下 安裝多個版本的 Python 後,使用 pip
會出現問題
即便修改了對應版本下..Python/Scripts
下的 pip.exe
爲 pip2.exe
和 pip3.exe
仍是會出現問題
python
參考了 Stack Overflow上的辦法code
使用 python -m pip install XXX
便可解決問題blog
因此對應不一樣版本的 Python, 使用
python2 -m pip install XXX
python3 -m pip install XXX
ip
查看 pip
的版本
開發
成功!感謝網上的資料和各位開發者無私的奉獻!
get