首页 > 其他分享 >jupyter notebook导入conda环境

jupyter notebook导入conda环境

时间:2022-10-07 10:45:54浏览次数:34  
标签:jupyter ipykernel -- notebook firstEnv conda install

创建conda环境

conda create --name firstEnv

激活环境并安装软件包

conda activate firstEnv
conda install scikit-learn

安装和配置ipykernel

conda install -c conda-forge ipykernel

添加环境

python -m ipykernel install --user --name=firstEnv

删除环境

jupyter kernelspec remove firstenv

标签:jupyter,ipykernel,--,notebook,firstEnv,conda,install
From: https://www.cnblogs.com/shixuanliu/p/16759198.html

相关文章