如何下载使用 jupyter notebook 大全
打开电脑的 Anaconda Prompt(Anaconda3)
在里面输入:
conda create -n tf1140py36 python=3.6 activate tf1140py36
下载完成之后可以使用pip下载你平时常用的库,可以下载清华的库比较快。
现在来下载jupyter notebook:
pip install jupyter -i https://pypi.tuna.tsinghua.edu.cn/simple
开始下载:
下载完成:
输入命令行打开jupyter notebook:
jupyter notebook
我们可以去设置一下jupyter notebook的路径:
jupyter notebook --generate-config
找到这个路径下的py文件:
打开这个py文件,使用Ctrl + F 查找到 #c.NotebookApp.notebook_dir =
把这个修改成你想保存的路径,然后保存关掉即可。
