问题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
问题3:在pycharm中安装包如(PIL)时提示,PackagesNotFoundError: The following packages are not available from current channels.
原因:当前频道中未找到,查看当前频道是否为空,笔者此处即为空,设置上相应频道即可。
添加清华源:
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/pro
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/msys2
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda