07-11-周六_11-24-03

This commit is contained in:
AaronXu
2026-07-11 11:24:03 +08:00
parent 825bcf47fa
commit 86be7d2c53
2 changed files with 21 additions and 1 deletions

View File

@@ -170,6 +170,24 @@
"\n",
"```powershell\n",
"pip install jupyter ipykernel -i https://pypi.tuna.tsinghua.edu.cn/simple\n",
"```\n",
"\n",
"在Docker中安装\n",
"\n",
"```bash\n",
"cd /opt\n",
"mkdir jupyter\n",
"cd jupyter\n",
"docker run -p 8888:8888 \\\n",
" -v \"$PWD\":/home/jovyan/work \\\n",
" --name my-jupyter \\\n",
" jupyter/scipy-notebook:latest\n",
"```\n",
"\n",
"在Docker中为jupyter安装汉化包\n",
"\n",
"```bash\n",
"docker exec -it my-jupyter pip install jupyterlab-language-pack-zh-CN -i https://pypi.tuna.tsinghua.edu.cn/simple\n",
"```"
]
},