jupyter notebook 配置conda 虚拟环境python

conda创建python环境

 conda create -n openvoice python=3.9

激活环境

source activate openvoice

在虚拟环境中安装ipykernel

pip install ipykernel

添加虚拟环境进到 jupyter notebook

python -m ipykernel install --user --name openvoice --display-name openvoice

启动 jupyter notebook

jupyter notebook

jupyter notebook 配置conda 虚拟环境python_第1张图片

参考链接:使用Conda来配置Jupyter notebook的虚拟环境icon-default.png?t=N7T8https://www.cnblogs.com/tccjx/articles/16469642.html

你可能感兴趣的:(jupyter,conda,linux)