美文网首页
python环境 - anaconda

python环境 - anaconda

作者: 脏脏包盛 | 来源:发表于2017-11-29 21:17 被阅读0次

    安装 Anaconda

    去anaconda管网下载安装包
    然后运行以下命令

     chmod a+x anaconda.sh
     ./anaconda.sh
    

    根据提示完成安装,其中安装路径上要改写自己要安装打路径,并在最后添加该路径的环境变量

    Anaconda 包管理使用

      #查看已经安装打包
     conda list
     #查看某个指定环境的已安装包
    conda list -n python34
    
    #查找package信息
    conda search numpy
    
    #安装scipy
    conda install scipy
    
    #安装package
    #如果不用-n指定环境名称,则被安装在当前活跃环境
    conda install -n python34 numpy
    
    #更新package
    conda update -n python34 numpy
    
    #删除package
    conda remove -n python34 numpy
    
    # 更新conda,保持conda最新
    conda update conda
    
    # 更新anaconda
    conda update anaconda
    
    # 更新python
    conda update python
    

    conda 可以产生一个自定义的环境,假设在安装的是 Python 2.7 的情况下,想使用 Python 3.4,只需要在命令行下使用 conda 产生一个新的环境:

    conda create -n py34 python=3.4
    

    这里这个环境被命名为 py34 ,可以根据喜好将 py34 改成其他的名字。
    使用这个环境时,只需要命令行下输入:

    activate py34 #(windows)
    source activate py34 #(linux, mac)
    

    此时,我们的 Python 版本便是 python 3.4了。

    spyder编辑器

    naconda 默认使用的编辑器是 spyder,可以在命令行下输入:

    spyder

    来进入这个编辑器,具体使用方法不做介绍。

    相关文章

      网友评论

          本文标题:python环境 - anaconda

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