文章目录
- 给jupternotebook设置新环境
- 遇到的报错
- 添加路径的方法
给jupternotebook设置新环境
# 先在anaconda界面新建环境
conda env list # 查看conda prompt下的有的环境变量 带星号的是当前活跃的
activate XXXX
pip install ipykernel ipython
ipython kernel install --user --name XXXX #这里的XXXX是新建的环境
遇到的报错
WARNING: The scripts fonttools.exe, pyftmerge.exe, pyftsubset.exe and ttx.exe are installed in ‘D:\anaconda\envs\Dorisdrawing\Scripts’ which is not on PATH.
Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.
我认为不能忽略该条报错
添加路径的方法
我实际上没做这个操作 我restart了kernel 解决