首页 > 其他分享 >jupyter notebook汉化

jupyter notebook汉化

时间:2023-03-09 16:11:06浏览次数:42  
标签:插件 jupyter -- 重启 汉化 notebook

jupyter notebook汉化以及安装插件

汉化

  • 在环境变量中新建一个名为LANG的变量,值为zh_CN.UTF8。重启即可
image-20230309154208205

安装插件

  • 打开Anaconda Promt,输入activate base
image-20230309155414281
  • 运行下面两条命令
pip install jupyter_contrib_nbextensions -i https://pypi.tuna.tsinghua.edu.cn/simple

jupyter nbextensions_configurator enable --user
  • 重启会发现多出一栏

image-20230309155550512

  • 取消勾选disable,如果没有下图这样的面板,输入命令
jupyter contrib nbextension install --user --skip-running-check 
image-20230309155650171

重启就会出现,勾选上需要的插件既可以。

标签:插件,jupyter,--,重启,汉化,notebook
From: https://www.cnblogs.com/dxmstudy/p/17198856.html

相关文章

  • Jupyter Notebook特性-可视化输出 【chatgpt生成】
    JupyterNotebook可以输出各种可视化图表,例如线图、散点图、条形图等。这些图表可以直接在Notebook中显示,用户可以通过交互式操作进行缩放、平移等操作,以便更好地探索数......
  • Jupyter Notebook 运行朴素贝叶斯算法及讲解 【chatgpt生成】
    首先,我们需要导入所需的库。在本示例中,我们将使用NumPy和Scikit-learn库。请确保在执行下面的代码之前已安装这些库。在第一步中,我们导入了所需的库,这些库包括NumPy和Sci......
  • Jupyter notebook的使用
    Jupyternotebook的使用1.简介JupyterNotebook是基于网页的用于交互计算的应用程序。其可被应用于全过程计算:开发、文档编写、运行代码和展示结果。——JupyterNoteb......
  • JupterNotebook运行按钮不见了
    原因是被css隐藏了,打开Lib\site-packages\notebook\static\style\style.min.css定位div.run_this_cell把display:none删掉即可参考:https://www.kaggle.com/questions-......
  • jupyter notebook打开
    打开anaconda列表下anacondapowershellprompt用cd打开目录(目录是你的python文件放置的位置)最后打开jupyternotebook......
  • Jupter Notebook 常见问题
    不会自动打开浏览器问题https://www.iotword.com/6147.html默认工作路径的设置https://www.cnblogs.com/yuyanc/p/16434487.html导入ipynb文件方法https://www.cnblog......
  • 判断jupyter中python解释器的版本
    查看解释器中的python版本importsysprint(sys.executable)print(sys.path)#更具体查看jupyternotebook中shell的版本信息!whichpython类似命令whereispyth......
  • jupyter/juputerlab 自动显示 conda 环境
    见:https://github.com/Anaconda-Platform/nb_conda_kernels说白了三句话:1、在你的conda环境中安装jupyter/jupyterlab,不限制是不是在base环境;2、在安装jupyter的环境中......
  • 安装Jupyter踩坑记录
    安装Anaconda之后,进行jupyter安装pipinstalljupyterlab报错解决pipisconfiguredwithlocationsthatrequireTLS/SSL,howeverthesslmoduleinPythonisnot......
  • 在Anaconda虚拟环境中安装jupyternotebook
    使用condaenvlist命令查看已有的虚拟环境(首次只有base)使用condacreate-nyour_env_namepython=x.x创建虚拟环境使用condaactivateyour_env_name进入新创建的虚拟......