問題1:Fatal error in launcher: Unable to create process using ‘“d:\anaconda\isntall\envs\learn1\python.exe
在進行anaconda學習時,在控制臺輸入:pip list想要查看環境里的內容時發生錯誤:
Fatal error in launcher: Unable to create process using '"d:\anaconda\isntall\envs\learn1\python.exe" "D:\Anaconda\isntall\envs\pytorch1\Scripts\pip.exe" list'
原因:環境丟失了pip,安裝升級一下即可。
python -m pip install -U pip
問題2:pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.
原因:國內鏈接超時,使用鏡像鏈接即可。
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pip install ten
sorboard