python环境搭建
1.Anaconda安装 2.更新包 `conda install -all` 添加清华源 conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/ # 设置搜索时显示通道地址 conda config --set show_channel_urls yes 换回官方源 conda config --remove-key channels 检查源 conda config --show 查看jupyter版本 jupyter --version #下载主题 # 安装 pip install jupyterthemes # 更新到最新版本 pip install --upgrade jupyterthemes jt -t 主题名(gruvboxl) 来源: https://www.cnblogs.com