目录
一、下载anaconda并配置
创建虚拟环境并配置镜像源
二、对虚拟环境建jupyter内核
三、配置pip.ini
四、下载pycharm
给出镜像网址:
Index of /anaconda/miniconda/ | 清华大学开源软件镜像站 | Tsinghua Open Source Mirror
根据操作系统选择对应版本即可
适用人群选just me,advanced option两个都打钩,超简单安装。
随后win+r,输入cmd后,键入conda -V,
如果出现错误,那就是环境变量没配置好,在设置里头搜索’环境‘二字,
点击环境变量,在下面的系统变量中找到Path,双击,打开新建添加如下
win+r,打开cmd,输入conda env list查看环境
conda env list
可以看到有这么多环境,name指的是env 名字,可以改的。
#创建env
conda create -n name python=3.7
一些其它的命令
#激活/退出env
activate/deactivate
#删除env
conda remove -n 需要删除的环境名 --all
#查看env
conda info --env
换源、恢复默认源、查看当前源:
win+r,cmd,直接输入
#换源:
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
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/r/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/main/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/conda-forge/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/msys2/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/bioconda/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/menpo/
conda config --set show_channel_urls yes
#恢复默认源
conda config --remove-key channels
#查看当前源
conda config --show
①activate env,env对应你的环境
②安装ipykernel
pip install ipykernel
③创建内核:
python -m ipykernel install --user --name env名字 --display-name "kernel想取的名字"
此时已经能在jupyter notebook里选择新建的kernel了
若要在想要的位置打开jupyter,可以如下图
也可以设置jupyter默认打开路径,
#首先创建config文件
jupyter notebook --generate-config
#接下来打开创建的jupyter_notebook_config.py修改 c.NotebookApp.notebook_dir = 'F:\GouTin'
④安装nbconda插件
#安装nbconda:
pip install jupyter_contrib_nbextensions &&jupyter contrib nbextension install
那么在Nbextentions页面你就可以选择一些方便的插件
activate env后,防止pip安装包失败,出现http 错误
在用户文件夹下创建pip.ini文件,下面的xx代表DELL、administrator这类用户名
#创建C:\Users\xx\pip.ini 文件
#记事本打开,将下面的粘贴进去:
[global]
timeout = 6000
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
trusted-host = pypi.tuna.tsinghua.edu.cn
#随后win+r进入cmd设置
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/
pip config set global.index-url http://mirrors.cloud.tencent.com/pypi/simple
pip config set global.index-url http://pypi.douban.com/simple/
那么在env里使用pip就畅通无阻了
你也可以在pip的时候使用指定镜像源:
pip install 库包名 -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com
Download PyCharm: Python IDE for Professional Developers by JetBrains
随后打开file的setting,选择一下env里的解释器即可开始享用。