linux多虚拟环境安装jupyter notebook

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux多虚拟环境安装jupyter notebook相关的知识,希望对你有一定的参考价值。

1.linux环境下载python虚拟环境Miniconda包
wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/miniconda/Miniconda3-latest-Linux-x86_64.sh

2.安装Miniconda依赖包
yum -y install bzip2

3.安装
sh Miniconda3-latest-Linux-x86_64.sh

4.配置改别名
vim /root/.bashrc
...
#alias for conda
alias cl="conda env list"
alias cc="conda create -n"
alias coa="source activate"
alias cod="source deactivate"
alias cr="conda remove --all -n"
...
:wq

5.创建一个python虚拟环境
cc lcs
coa lcs

6.安装jupyter notebook
pip install jupyter notebook

7.检查是否安装
pip freeze |grep jupyter

8.修改配置文件
jupyter notebook --generate-config
vim /root/.jupyter/jupyter_notebook_config.py

c.NotebookApp.notebook_dir = ‘/root/notebook‘ # notebook默认目录
.....
c.NotebookApp.ip = ‘*‘
#c.NotebookApp.password = u‘sha1:bcd259ccf...<your hashed password here>‘
c.NotebookApp.open_browser = False
:wq

jupyter notebook password
jupyter notebook --allow-root

9.客户端浏览器登陆jupyter

51cto博客:de8ug
Jupyter官方文档:http://jupyter-notebook.readthedocs.io/en/latest/notebook.html

以上是关于linux多虚拟环境安装jupyter notebook的主要内容,如果未能解决你的问题,请参考以下文章

python_配置

jupyter多个虚拟环境间切换

虚拟环境下创建jupyter解决dead kernel问题

虚拟环境下创建jupyter解决dead kernel问题

Python学习笔记:CentOS 7.9安装配置pyenvpipipython和jupyter

如何将 Jupyter notebook 安装到 linux 虚拟机中