赞
踩
1、安装anaconda
装好后,自带jupyter notebook
2、进入base虚拟环境,输入以下命令打开jupyter notebook
jupyter notebook
3、创建自己的虚拟环境,如:
conda create -n environment_name python=X.X
本人:conda create -n mj python=3.6
4、在自己的虚拟环境中安装ipykernel:
- pip install ipykernel
- python -m ipykernel install --user --name mj --display-name mj(这条命令是把mj虚拟环境添加到jupyter notebook中)
5、jupyter notebook中写的文件保存位置如何修改
在base环境下输入命令:
jupyter notebook --generate-config
会生成配置文件,进一步输入命令进行修改:
gedit ~/.jupyter/jupyter_notebook_config.py
这里把文件保存到/home/wu/jupyter_documents,不然默认会保存到主目录下就是/home/wu,我的user设置为wu
修改前:
修改后:
这样一来,就能在jupyter notebook中用自己的虚拟环境写程序,并保存到指定位置了
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。