美文网首页
Anaconda环境配置

Anaconda环境配置

作者: 王尔德的小人书 | 来源:发表于2020-09-02 15:27 被阅读0次

    安装直接无脑点击下一步,安装结束后记得配置环境变量。

    我的电脑-属性-高级系统设置-环境变量 在PATH条目添加C:\ProgramData\Anaconda3\Scripts

     输入conda --version,输出conda版本号,即表示配置完成

    介于国外网站访问速度较慢,需要配置清华源

    在Anaconda Prompt中运行:

    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

    前往当前用户的目录下,查看.condarc文件

    channels:

      - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/

      - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/

      - defaults

    show_channel_urls: true

    Jupyter 相关

    在最新版本Anaconda可能会遇到Jupyter Notebook无法正常启动浏览器的问题

    在Anaconda Prompt中运行:

    jupyter notebook --generate-config

    生成jupyter notebook配置文件

    找到文件C:\Users\用户名\.jupyter找到文件jupyter_notebook_config.py

    搜索#c.NotebookApp.notebook_dir

    在下方添加

    import webbrowser

    webbrowser.register('chrome',None,webbrowser.GenericBrowser(u'C:\\Users\\李小白\\AppData\\Local\\CentBrowser\\Application\\chrome.exe'))

    c.NotebookApp.browser = 'chrome'

    PIP安装相关

    如果出现Retrying等资源抓取失败的问题,可以换源

    阿里云 http://mirrors.aliyun.com/pypi/simple/

    中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/ 

    豆瓣(douban) http://pypi.douban.com/simple/ 

    清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/

    中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/

    # pip install pandas  -i http://pypi.douban.com/simple --trusted-host pypi.douban.com

    永久设置方法:

    pip install pip -U

    pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple

    配置完之后就可以像平常一样安装包,速度提升几十倍

    例如:pip install jieba

    切换为阿里云进行下载

    pip install pandas -i http://mirrors.aliyun.com/pypi/simple/   --trusted-host mirrors.aliyun.com

    pip install pandas -i http://mirrors.aliyun.com/pypi/simple/

    相关文章

      网友评论

          本文标题:Anaconda环境配置

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