在ubuntu服务器中搭建jupyter notebook,并安装numpy,scipy, matplotlibm, pandas, sklearn

Posted 桂月二四

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在ubuntu服务器中搭建jupyter notebook,并安装numpy,scipy, matplotlibm, pandas, sklearn相关的知识,希望对你有一定的参考价值。

1.利用miniconda 安装jupyter notebook

教程链接
精简版:

1.1安装miniconda
转到 https://docs.conda.io/en/latest/miniconda.html 选择最新的Miniconda右键复制最新的
然后使用 Wget 命令获取最新的.sh 文件

wget https://repo.anaconda.com/miniconda/Miniconda3-py38_4.10.3-Linux-x86_64.sh

运行

sh Miniconda3-py38_4.10.3-Linux-x86_64.sh 

然后就无脑按Enter
它会在你目前的目录安装
然后执行,进行初始化:

conda init

重启ssh链接,出现(base) 即为成功

1.2 安装jupyter notebook
依次执行四条命令,第三条命令为设置密码

conda install jupyter notebook
jupyter notebook --generate-config
jupyter notebook password
cd ~/.jupyter/

编辑jupyter_notebook_config.py

vim jupyter_notebook_config.py 

加入下列语句

# Set options for ip, and toggle off
# browser auto-opening
# Set ip to '*' to bind on all interfaces (ips) for the public server
c.NotebookApp.ip = '*'
c.NotebookApp.open_browser = False

# It is a good idea to set a known, fixed port for server access
c.NotebookApp.port = 7000#按照自己的喜好设置端口,保证不冲突即可

不要忘了在云端打开端口(这里是腾讯云)

输入命令启动jupyter notebook

jupyter-notebook --allow-root

在浏览器中输入ip:端口 即可

2.安装numpy,scipy, matplotlibm, pandas, sklearn

教程链接

按照上述教程安装完成后,如果发现安装的numpy等都无法使用。可能是安装的路径没有添加到sys.path中。
解决方法

以上是关于在ubuntu服务器中搭建jupyter notebook,并安装numpy,scipy, matplotlibm, pandas, sklearn的主要内容,如果未能解决你的问题,请参考以下文章

在ubuntu服务器中搭建jupyter notebook,并安装numpy,scipy, matplotlibm, pandas, sklearn///tensorflow

服务器上搭建Jupyter Notebook服务

在服务器搭建Jupyter notebook

虚拟机搭建jupyter notebook服务

怎样结束jupyter?

在anaconda环境下搭建python3.5 + jupyter sparkR,scala,pyspark