【Python】conda使用指南

系统 1507 0

Backto Python Index.

1. 安装 Installation

官网,

国内镜像源

清华最方便,

            
              conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
# 显示源地址
conda config --set show_channel_urls yes

            
          

但是清华园因版权问题中间关闭过,
, 备选 中科大源

            
              conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/main/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/conda-forge/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/msys2/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/bioconda/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/menpo/
conda config --set show_channel_urls yes

            
          

随系统启动 Open/Close

            
              conda config --set auto_activate_base false

            
          

2. 常用指令

            
              
                # create env
              
              
conda create 
              
                -
              
              
                -
              
              name
              
                =
              
              xxx python
              
                =
              
              
                3.6
              
              
                # list all available envs
              
              
conda info 
              
                -
              
              e


              
                # activate env
              
              
conda activate xxx


              
                # deactivate env
              
              
conda deactivate


              
                # list all packages in current env
              
              
conda 
              
                list
              
              
                # install a new package
              
              
conda install pytorch
              
                =
              
              
                0.4
              
              
                .0
              
               cuda92 
              
                -
              
              c pytorch 


              
                # to clone an env
              
              
conda create 
              
                -
              
              
                -
              
              name
              
                =
              
              AAA 
              
                -
              
              
                -
              
              clone
              
                =
              
              BBB


              
                # to delete an env
              
              
conda env remove 
              
                -
              
              n ENV_NAME

            
          

3. 关键包的安装

            
              
                # mostly used
              
              
conda 
              
                install
              
               numpy scipy pandas matplotlib pillow


              
                # to install tensorboardx
              
              
conda 
              
                install
              
               -c conda-forge tensorboardx 


              
                # to install easydict
              
              
conda 
              
                install
              
               -c conda-forge easydict 


            
          

不要使用 conda install opencv ,因为安装内容不全,比如VideoCapture 读视频都不行。使用 pip

            
              pip 
              
                install
              
               opencv-python opencv-contrib-python

            
          

不要使用 conda install tensorflow-gpu , 因为官方不给版本更新。使用 pip

            
              pip 
              
                install
              
               tensorflow-gpu

            
          

4. Env 组织

按版本组织

            
              -pyVvv_base(clean)
	- pyVvv_base_cv(numpy, scipy, opencv, matplotlib, )


            
          

Ref

  • Anaconda使用总结暨部署python2和python3共存
  • Anaconda多环境多版本python配置指导

更多文章、技术交流、商务合作、联系博主

微信扫码或搜索:z360901061

微信扫一扫加我为好友

QQ号联系: 360901061

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描下面二维码支持博主2元、5元、10元、20元等您想捐的金额吧,狠狠点击下面给点支持吧,站长非常感激您!手机微信长按不能支付解决办法:请将微信支付二维码保存到相册,切换到微信,然后点击微信右上角扫一扫功能,选择支付二维码完成支付。

【本文对您有帮助就好】

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描上面二维码支持博主2元、5元、10元、自定义金额等您想捐的金额吧,站长会非常 感谢您的哦!!!

发表我的评论
最新评论 总共0条评论