首页 > 其他分享 >miniconda安装jupyter

miniconda安装jupyter

时间:2023-04-16 11:55:05浏览次数:42  
标签:jupyter miniconda conda install Jupyter nbextensions 安装

conda create -n jupyter # 创建jupyter环境
activate jupyter # 进入该环境
conda install jupyter notebook # 安装Jupyter包

conda activate jupyter
conda install nb_conda_kernels
conda activate [environmentName]  
conda install ipykernel  # 后续每个新环境想使用jupyter都需要安装ipykernel

activate jupyter
jupyter notebook
# 安装 jupyter_contrib_nbextensions (python包)
conda install -c conda-forge jupyter_contrib_nbextensions ## conda 安装方法
pip install jupyter_contrib_nbextensions -i https://pypi.tuna.tsinghua.edu.cn/simple ## pip 安装方法(不推荐)
# 安装 nbextension 插件(javascript and css files)
jupyter contrib nbextension install --user

-------------------------------------------------------

# 安装python包
conda install -c conda-forge jupyter_nbextensions_configurator  ## conda 安装方法
pip install jupyter_nbextensions_configurator -i https://pypi.tuna.tsinghua.edu.cn/simple  ## pip 安装方法(不推荐)
# 安装Jupyter插件
jupyter nbextensions_configurator enable --user

Miniconda+Jupyter 小白设置指南(Windows) 

 

 

 

Jupyter 的 NbExtensions 选项不显示 ***

推荐10个好用到爆的Jupyter Notebook插件 **

nbextension扩展模块安装后不显示

标签:jupyter,miniconda,conda,install,Jupyter,nbextensions,安装
From: https://www.cnblogs.com/qingshanjianke/p/17322824.html

相关文章

  • charles证书安装
    一、charles证书安装下载安装OpenSSL访问OpenSSL官网下载并安装:https://slproweb.com/products/Win32OpenSSL.html配置环境变量 下载charles证书打开charles,点击Help>SSLProxying>SaveCharlesRootCertificate...下载证书到本地证书格式化tips: 将证......
  • protobuf安装、使用
    介绍protobuf是用来对数据进行序列化和反序列化的灵活,高效,自动化的解决方案。序列化:将数据结构转换成二进制的字节串反序列化:将二进制串还原成数据结构Ubuntu下编译安装尝试安装最新版本-v3.22.1(没成功)参照文档的安装过程github-protocol-readme这里在Linux下使用cmake......
  • SQLyog Ultimate软件安装教程
    目录一、软件介绍二、软件下载三、软件安装 (1)首先下载云盘中的SQLyog-12.0.8-0.x64.exe (2)双击执行SQLyog-12.0.8-0.x64.exe文件,点击OK (3)选择下一步 (4)勾选协议,然后选择下一步 (5)更换软件安装位置,默认是安装到C盘的,建议安装到其它磁盘。  (6)等待安装完成 (7)选择UI(用户界面)语言......
  • ffmpeg安装及使用
    ffmpegAcomplete,cross-platformsolutiontorecord,convertandstreamaudioandvideo官网:http://ffmpeg.org/安装linux下安装aptinstallffmpegffmpeg-hwindows下安装下载地址https://github.com/BtbN/FFmpeg-Builds/releases下载后解压配置环境变量设......
  • Linux学习安装
    ncpa.cpl查看网络连接1、安装Vmware注意事项:版本不匹配[(24条消息)创建Linux报错“与vmx86驱动程序的版本不匹配:预期为410.0,实际为360.0”_vmx86驱动程序的版本不匹配_学习学习学习,再学习的博客-CSDN博客](https://blog.csdn.net/qq_54132332/article/details/123......
  • [Mellanox] 安装MFT并配置网卡为以太网模式
    [Mellanox]安装MFT并配置网卡为以太网模式当我们想要配置Mellanox网卡时,如果出现了下面情况:$sudomststartmst:commandnotfound这说明我们的系统中缺少MFT。MFT是一套管理Mellanox网卡的工具,也是MLEX_OFED中的一部分。如果你不小心搞丢了MFT,可以用下面的方法安装:去......
  • linux安装软件
    ......
  • 安装软件包
    ###################################################有时候安装mysql等依赖包较多的时候,如果直接一条yum-install下去会眼花缭乱 #!/bin/bashfunctionyum_install_packages(){#将输入的软件包名称存储到数组中packages=("$@")installed=()#存储已......
  • solidworks 2016安装教程(win7,win10,win11都可以安装)
    以下是搜索的笔记,记录下来,方便自己下次找到一,安装关闭电脑的防护软件,禁用计算机的网络连接(禁用网卡或者拔掉网线)打开安装包,打开“_SolidSQUAD_”目录解压“_SolidSQUAD_.7z”,运行其中的“SolidWorksSerialNumbers2016.reg”写入注册表信息运行“Setup.exe”开始安装选择“......
  • kubernetes 1.25.0 安装部署
    1.环境说明主机IP地址备注k8s-master192.168.0.200控制节点k8s-node1192.168.0.200工作节点k8s-node2192.168.0.200工作节点2.准备工作(所有节点)分别设置主机名hostnamectlset-hostnamek8s-masterhostnamectlset-hostna......