miniconda安装jupyter
Posted 青衫剑客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了miniconda安装jupyter相关的知识,希望对你有一定的参考价值。
conda create -n jupyter # 创建jupyter环境
activate jupyter # 进入该环境
conda install jupyter notebook # 安装Jupyter包
conda activate jupyter
conda install nb_conda_kernels
conda activate [environmentName]
conda install ipykernel # 后续每个新环境想使用jupyter都需要安装ipykernel
activate jupyter
jupyter notebook
# 安装 jupyter_contrib_nbextensions (python包)
conda install -c conda-forge jupyter_contrib_nbextensions ## conda 安装方法
pip install jupyter_contrib_nbextensions -i https://pypi.tuna.tsinghua.edu.cn/simple ## pip 安装方法(不推荐)
# 安装 nbextension 插件(javascript and css files)
jupyter contrib nbextension install --user
-------------------------------------------------------
# 安装python包
conda install -c conda-forge jupyter_nbextensions_configurator ## conda 安装方法
pip install jupyter_nbextensions_configurator -i https://pypi.tuna.tsinghua.edu.cn/simple ## pip 安装方法(不推荐)
# 安装Jupyter插件
jupyter nbextensions_configurator enable --user
Miniconda+Jupyter 小白设置指南(Windows)
Jupyter 的 NbExtensions 选项不显示 ***
在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中。
解决方法
以上是关于miniconda安装jupyter的主要内容,如果未能解决你的问题,请参考以下文章
[转]Jupyter Notebooks自动代码补全(miniconda)