美文网首页
python常用命令

python常用命令

作者: 有花落蝶 | 来源:发表于2018-07-27 21:37 被阅读0次

    https://blog.csdn.net/erice_s/article/details/80156191
    1 查找并安装包(通过指定channel的形式安装包)
    anaconda search -t conda wordcloud anaconda show conda-forge/wordcloud
    $ conda install –channel https://conda.anaconda.org/conda-forge wordcloud

    conda环境搭建
    https://www.jianshu.com/p/eb68a5265a4b

    一般命令

    conda list

    查看某个指定环境的已安装包

    conda list -n python34

    查找package信息

    conda search numpy

    安装package

    conda install -n python34 numpy

    如果不用-n指定环境名称,则被安装在当前活跃环境

    也可以通过-c指定通过某个channel安装

    更新package

    conda update -n python34 numpy

    删除package

    conda remove -n python34 numpy

    相关文章

      网友评论

          本文标题:python常用命令

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