anaconda

作者: yuerxiaoshui | 来源:发表于2021-11-04 20:20 被阅读0次

    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 & 清除多余的包,节省空间
    1. 我遇到了问题 --- 2021.11.4
      The environment is inconsistent, please check the package plan carefully.

    最后是怎么解决的呢:

    1. conda clean --all
    2. conda update --all

    另外,涉及到了清华源更新的问题,有下面几个常用的指令:

    • conda config --add xxxxxx (添加)
    • conda config --show (显示)
    • conda config --remove-key channels (删除添加的镜像)
    1. anaconda-navigator 无法启动 --- 2020.3.7
      conda update anaconda-navigator 即可,若出现无法连接网站的情况,则连接 Latern 就好

    2. 安装 tensorflow
      在 Anaconda 中直接装 tensorflow 就会直接装上所依赖的 cuda, cudnn 包
      注意:cuda, cudnn 会有版本不匹配的问题

    3. 安装 yaml
      anaconda 装 yaml 时 要选择 pyyaml

    4. 安装 wget
      使用 anaconda 安装该包时应装 pywget,而不是 wget

    相关文章

      网友评论

          本文标题:anaconda

          本文链接:https://www.haomeiwen.com/subject/oywkzltx.html