【M1 Mac】conda安装jupyter notebook 并使用虚拟环境

安装jupyter

conda install jupyter

激活需要在jupyter使用的虚拟环境

source activate env_name

安装ipykernel

conda install ipykernel

在ipykernel中安装当前环境/无法访问则使用sudo

python -m ipykernel install --name env_name

切换到base,启动jupyter

conda deactivate
jupyter notebook


 

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