Anaconda使用问题记录

修改为国内源

(1)生成配置文件

# windows下 prompt 运行下面命令,生成配置文件
conda config
# 正常情况下会在 "C:\Users\用户名"目录下生成一个.condarc文件,用文本编辑器打开
# 复制下面内容覆盖掉原来的文本即可
channels:
  - defaults
show_channel_urls: true
channel_alias: https://mirrors.tuna.tsinghua.edu.cn/anaconda
default_channels:
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/r
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/pro
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/msys2
custom_channels:
  conda-forge: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  msys2: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  bioconda: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  menpo: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  pytorch: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  simpleitk: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud

# 清除索引缓存,然后就可以使用新的源了
conda clean -i

# 如果要设置搜索时显示通道地址,在prompt中执行下面的命令
conda config --set show_channel_urls yes

# 恢复默认源
conda config --remove-key channels

用国内源安装软件,pip通用,用来解决有些模块用conda安装失败的问题

# 豆瓣源安装软件
pip install -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
# 例如安装pandas
pip install -i http://pypi.douban.com/simple --trusted-host pypi.douban.com pandas
# 或者这样
pip install pandas -i http://pypi.douban.com/simple --trusted-host pypi.douban.com

更新anaconda到最新版

# 先更新conda到最新版
conda update conda
# 再更新anaconda到最新版
conda update anaconda
# 这时候base(基础)环境就会被升级到最新版
# 只升级python
conda update python
# base升级完以后,再升级其他环境:
# 1先切换到其他环境
activate 环境名
# 2然后执行下面的命令,就可以把创建的环境升级到最新版了
conda update --all

更新anaconda时报错

#错误信息如下:
# An HTTP error occurred when trying to retrieve this URL
# 主要是因为conda源加入了不知名的URL,现在不能使用了,解决方法如下:
# 重置源配置
conda config --remove-key channels 
# 重新添加清华源,其他源也可以(比如中科大源)
# 具体方法下文有述

添加代码提示

# 先安装 nbextensions,用国内源快一点
pip install -i http://pypi.douban.com/simple --trusted-host pypi.douban.com jupyter_contrib_nbextensions
jupyter contrib nbextension install --user

# 接着安装 nbextensions_configurator
pip install -i http://pypi.douban.com/simple --trusted-host pypi.douban.com jupyter_nbextensions_configurator
jupyter nbextensions_configurator enable --user

然后启动notebook,按下面方法配置


开启代码提示

修改默认主题

# 先安装主题
pip install -i http://pypi.douban.com/simple --trusted-host pypi.douban.com --no-dependencies jupyterthemes

# 然后设置
jt -t oceans16 -f fira -fs 13 -cellw 90% -ofs 11 -dfs 11 -T -N
# 我设置字体大小13觉得合适,其他参数参考连接

# 安装好了,有的电脑可能会提示缺少 lesscpy,继续 pip 安装
pip install -i http://pypi.douban.com/simple --trusted-host pypi.douban.com lesscpy

修改工作文件夹路径

# 网上的方法有很多,我查的资料有3个,都大概说一下
# 1.修改启动快捷方式Jupyter Notebook,把快捷方式中“目标位置”最后的 "%USERPROFILE%/",删掉
# 2.还是上面的快捷方式,把起始位置改成目标文件夹路径(结尾不加\)
# 3.就是我的方法
jupyter notebook --generate-config
# 会生成.jupyper文件夹,打开文件夹内的 jupyter_notebook_config.py 文件
# 直接搜索.notebook_dir =
# ‘’里面写上目标文件夹路径(不含\),去掉前面的#
# 路径中\一定是双的,我因为这个问题,一直改不成功,有些人可能可以
工作文件夹

修改启动的浏览器

按照上面第4步,生成配置文件,找到NotebookApp.browser,改成这样

#  variable to override it.
#c.NotebookApp.browser = ''
import webbrowser
webbrowser.register('chrome', None, webbrowser.GenericBrowser(r'D:\\Program Files\\Chrome78x64\\chrome.exe'))
c.NotebookApp.browser = 'chrome'
修改浏览器
# 别问我为什么要改浏览器
# 我用自己的浏览器(百分浏览器)发现代码框的焦点经常跳,而且无法用鼠标滑动来选择代码,
# 查了很多资料好像大家没这个问题,折腾了很久发现是浏览器的问题
# 换了原生Chrome解决问题了,百分浏览器也是Chrome内核,但是用起来比原生舒服太多了,
# 所以只好给notebook单独弄一个原生Chrome写代码

参考连接:
https://blog.csdn.net/xyk_hust/article/details/87798938
https://www.cnblogs.com/qiuxirufeng/p/9609031.html
https://www.cnblogs.com/bigcat0607/p/12205333.html
https://www.cnblogs.com/yuvejxke/p/13169172.html

你可能感兴趣的:(Anaconda使用问题记录)