zoukankan      html  css  js  c++  java
  • 21、conda下载,安装,卸载

    参考:https://www.cnblogs.com/Datapotumas/p/6293309.html

    1、下载

    conda下载网址:https://conda.io/miniconda.html

    目前最新版本4.5.9:wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh 

    2、安装

    bash Miniconda3-latest-Linux-x86_64.sh -p /share/nas1/renpp/biosoft/Miniconda3/  -u            ##安装,其余的都yes.

    source ~/.bashrc                                        ##或者手动添加 export PATH="/share/nas1/renpp/biosoft/Miniconda3/bin:$PATH"

    3、卸载

    rm -rf ~/miniconda &&  rm -rf ~/.condarc  ~/.conda ~/.continuum

    4、常用命令

    conda list         #list packages installed

    conda search  #see all the packages that are available

    conda install <package-name>     ## install a package

    conda update --help    ##查看某一命令的帮助,如update命令及remove命令

    环境管理命令:conda env -h

      创建环境:conda create --name your_env_name

  • 相关阅读:
    博客阅读计数优化
    博客阅读简单计数
    博客后台富文本编辑
    博客分类统计
    Django关联关系查询
    上下篇博客,按月归档
    浅谈闭包以及常见面试题
    浅谈前端缓存(转至大佬)
    post请求头的常见类型
    浅谈RegExp 对象的方法
  • 原文地址:https://www.cnblogs.com/renping/p/9419558.html
Copyright © 2011-2022 走看看