Anaconda 指令
- conda create -n tfpy3ydp python=3.6 & 创建新环境
- conda remove -n tfpy3ydp & 删除环境
- source activate tfpy3ydp & 激活 tfpy3ydp 环境
- source deactivate & 退出当前环境
- conda install {packagename} & 在当前环境安装包
- conda uninstall {packagename} & 删除包
- anaconda-navigator & 开启 Anaconda Navigator
- conda clean -a & 清除多余的包,节省空间
- 我遇到了问题 --- 2021.11.4
The environment is inconsistent, please check the package plan carefully.
最后是怎么解决的呢:
- conda clean --all
- conda update --all
另外,涉及到了清华源更新的问题,有下面几个常用的指令:
- conda config --add xxxxxx (添加)
- conda config --show (显示)
- conda config --remove-key channels (删除添加的镜像)
-
anaconda-navigator 无法启动 --- 2020.3.7
conda update anaconda-navigator 即可,若出现无法连接网站的情况,则连接 Latern 就好 -
安装 tensorflow
在 Anaconda 中直接装 tensorflow 就会直接装上所依赖的 cuda, cudnn 包
注意:cuda, cudnn 会有版本不匹配的问题 -
安装 yaml
anaconda 装 yaml 时 要选择 pyyaml -
安装 wget
使用 anaconda 安装该包时应装 pywget,而不是 wget
网友评论