jupyter notebook 虚拟环境配置

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jupyter notebook 虚拟环境配置相关的知识,希望对你有一定的参考价值。

参考技术A 默认打开Anaconda Powershell Prompt是base环境,调用已经激活过的lib1环境的步骤

1)打开Anaconda Powershell Prompt属性

2)更改目标:

原目标:''%windir%\System32\WindowsPowerShell\v1.0\powershell.exe -ExecutionPolicy ByPass -NoExit -Command "& 'D:\anaconda_package\anaconda3\shell\condabin\conda-hook.ps1' ; conda activate 'D:\anaconda_package\anaconda3' "

其中%windir%\System32\WindowsPowerShell\v1.0\powershell.exe为程序路径;-ExecutionPolicy ByPass -NoExit -Command "为相关参数; 'D:\anaconda_package\anaconda3\shell\condabin\conda-hook.ps1'是Anaconda的一个 powershell 脚本;conda activate 'D:\anaconda_package\anaconda3是激活的base环境

更改后:''%windir%\System32\WindowsPowerShell\v1.0\powershell.exe -ExecutionPolicy ByPass -NoExit -Command "& 'D:\anaconda_package\anaconda3\shell\condabin\conda-hook.ps1' ; conda activate lib1 "

打开Anaconda Powershell Prompt就可以自动到lib1环境啦

以上是关于jupyter notebook 虚拟环境配置的主要内容,如果未能解决你的问题,请参考以下文章

Aanconda+虚拟环境+jupyter notebook配置

jupyter notebook添加Anaconda虚拟环境的python kernel

linux多虚拟环境安装jupyter notebook

使用conda创建虚拟环境,并将虚拟环境加载到jupyter notebook中已解决

mac 配置 jupyter notebook

最全指南如何在 Jupyter Notebook 中切换/使用 conda 虚拟环境?