WIN7下搭建深度学习开发环境

不太喜欢anaconda,觉得它装的东西太多,想自己配置一个相对干净的开发环境。

1 安装python ,这就不细说了,为了稳定考虑,装的是3.6.8版本。

2 设置pip镜像源:

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

注:pip配置文件位置-~/AppData/Romaing/pip/pip.ini

3 安装虚拟环境管理器

pip install virtualenv

pip install virtualenvwrapper-win

4 为virtualenv创建目录,例如:D:\pyEnvs

创建环境变量WORKON_HOME,值为D:\pyEnvs

5 新建虚拟环境AIStudy并指定python版本python36:

mkvirtualenv AIStudy --python=C:\Python36\python.exe

6 执行lsvirtualenv指令查看所有虚拟环境,环境AIStudy 位于D:\pyEnvs

7 激活虚拟环境AIStudy:

workon AIStudy

另:退出虚拟环境命令 deactivate

8 下边执行pip install安装各类需要的包:

pip install numpy,pandas,matplotlib

pip install keras

pip install catboost

pip install lightgbm

pip install sklearn

pip install jupyter

9 配置jupyter工作路径:

jupyter notebook --generate-config

打开“.jupyter”文件夹,可以看到里面有个配置文件。

修改jupyter_notebook_config.py配置文件,找到“c.NotebookApp.notebook_dir=……”,

把路径改成自己的工作目录。

## The directory to use for notebooks and kernels.

c.NotebookApp.notebook_dir = 'D:\work'

10 启动jupyter(指定端口9000):

jupyter notebook --port 9000

这样就可以在浏览器中使用jupyter了。

你可能感兴趣的:(WIN7下搭建深度学习开发环境)