安装jupyter,无法启动,或者经常crash
解决办法:
1,不要安装anaconda全家桶,速度慢,而且会安装另外一套python和库,导致代码跑不起来,容易crash。
2,直接安装jupyter: pip install jupyter -i https://pypi.tuna.tsinghua.edu.cn/simple
3,运行 C:\Users\xxxxxx>jupyter notebook
如果提示错误:'jupyter' 不是内部或外部命令,也不是可运行的程序或批处理文件。
找到jupyter的路径,比如以下路径,增加到环境变量里面。重新开启cmd,输入jupyter notebook
C:\Users\xxxxxx\AppData\Roaming\Python\Python312\Scripts
如果想跑某个具体的notebook,可以cmd定位到那个目录,然后再运行jupyter notebook
jupyter notebook启动时候需要密码。。。
解决办法:
cmd输入: jupyter server list
Currently running servers:
http://localhost:8888/?token=7ec8c563a2bb2c4d857ff52d56e6f7b8576d99e88f547f94 ::
把这个token 复制粘贴到 “password or token”,login。
edge浏览器无法使用快捷键
解决办法:
换成Chrome浏览器。查过edge的扩展,没装任何扩展。
快捷键操作:
1、编辑模式下:
enter:下一行
ctrl+enter:结束此段代码并显示运行结果
shift+enter:执行当前代码块并进入下一代码块
2、命令模式下:
esc:退出编辑模式,进入命令模式
A:向上创建一个代码块
B:向下创建一个代码块
DD:删除本代码块
shift+L:标记代码行数
M:变成mark down模式
Y:变成代码模式