这里写目录标题 conda链接jupyter conda链接jupyter 列出当前所有环境: conda env list 创建新环境: conda create -n your_env_name python=X.X(2.7、3.6、3.8等) 激活环境: conda activate your_env_name 链接jupyter需要下载一个包: pip install ipykernel 建立链接: python -m ipykernel install --user --name your_env_name 查看是否链接成功: jupyter kernelspec list