本文最后更新于 100 天前,如过您尝试失败,不出意外应该是出意外了。
检查conda版本
conda -V
退出当前虚拟环境
conda deactivate
创建新虚拟环境
conda create -n your_env_name python=x.x
更新conda
conda update conda
安装包
pip install xxx=x.x.x #没有cache的会保存一份到cache,会使用本地的cache
pip install xxx=x.x.x --no-cache-dir #不使用本地的cache