conda下安装jupyter notebook

conda

conda 创建环境: conda create -n 自定义环境名称 python=3.8

conda 激活环境: conda activate 环境名称

conda 在激活的环境下安装jupyter notebook:

             conda install jupyter notebook

或者:pip install jupyter notebook

conda 在激活的环境下安装jupyter扩展功能:pip install jupyter_nbextensions_configurator jupyter_contrib_nbextensions

conda 在激活的环境下安装经由jpynb文件生成pdf文件的功能:sudo apt-get install texlive-xetex texlive-fonts-recommended texlive-generic-recommended

你可能感兴趣的:(conda下安装jupyter notebook)