首先 安装 Anaconda,用来使用python3
这时候需要自己的安装一些依赖包
使用 conda install 安装很慢并且 报错 “Solving environment: failed with initial frozen solve.”
1.可能是由于未使用国内的镜像源,所以非常的慢
2.可能由于conda是比较低的版本,需要更新
针对上诉两个肯能的原因有解决方案如下
vim ~/.condarc
channels:
- https://mirrors.ustc.edu.cn/anaconda/pkgs/main/
- https://mirrors.ustc.edu.cn/anaconda/cloud/conda-forge/
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
show_channel_urls: true
ssl_verify: true
channel_priority: flexible
更新conda到最新版本:conda update -n base conda
然后执行:conda update --all
等所有更新完毕之后,安装 依赖包 例如 conda install python=3.6 就不报错了