Jupter安装
1.Jupyter概述
Jupyter Notebook是以网页的形式打开,可以在网页页面中直接编写代码和运行代码,代码的运行结果也会直接在代码块下显示程序
2.安装
打开Anaconda PowerShell Prompt(以管理员身份运行,避免出现权限不足),通过输入conda install jupyter notebook来安装jupyter模块
3.启动
(1)切换到想要开发代码的目录,输入命令jupyter notebook
(2)可能遇到的错误:Could not determine npm prefix: [WinError 2] 系统找不到指定的文件。
找到anaconda\Lib\site-packages\jupyter_lsp文件夹下的types.py,以管理员身份打开,修改
def _npm_prefix(self):
try:
return (
subprocess.run(["npm.cmd", "prefix", "-g"], check=True, capture_output=True)
.stdout.decode("utf-8")
.strip()
)
except Exception as e: # pragma: no cover
self.log.warn(f"Could not determine npm prefix: {e}")
4.创建脚本
(1)新建脚本
(2)执行快捷键:ctrl+enter
(3)jupter脚本后缀是ipynb
4.1 快捷键