python创建jupyter notebook虚拟环境

python创建虚拟环境及激活

1.进入cmd

python创建jupyter notebook虚拟环境_第1张图片
2. 进入要创建环境的目录下
python创建jupyter notebook虚拟环境_第2张图片

cd 地址

3.创建创新的虚拟环境

python -m venv tfod(虚拟环境的名字)

在这里插入图片描述

4.激活虚拟环境

.\dl\Scripts\activate

python创建jupyter notebook虚拟环境_第3张图片
这样就进入了新创建的虚拟环境了

5.安装库(pip和ipykernel)

python -m pip install --upgrade pip
pip install ipykernel
python -m ipykernel install --user --name=dl

python创建jupyter notebook虚拟环境_第4张图片
成功建立了jupyternotebook的虚拟环境

6.进入jupyterpython创建jupyter notebook虚拟环境_第5张图片
python创建jupyter notebook虚拟环境_第6张图片

你可能感兴趣的:(jupyter,python,虚拟环境)