首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • 来自专栏Python基础、进阶与实战

    IPython:加强版Python解释器

    pip install numpy jupyter-lab jupyter-lab 是一个集成了Jupyter notebook等功能的浏览器界面。 安装和启动 安装 pip install jupyterlab 启动:在命令行输入jupyter-lab命令启动 jupyter-lab 2022-06-22-12-55-11-image.png 然后会跳转到这个页面

    1.1K50编辑于 2022-12-06
  • 来自专栏气象学家

    在Jupyter Notebooks和JupyterLab中使用Matlab

    Change to the directory you’d like to work in and type jupyter-lab or, alternatively, use jupyter notebook JupyterLab, you only need to activate the jmatlab environment with “conda activate jmatlab” and then use “jupyter-lab

    1.1K20编辑于 2022-01-18
  • 来自专栏追不上乌龟的兔子

    JupyterLab——更具生产力的Jupyter环境

    (6).png JupyterLab(7).png 使用Jupyter Lab 安装Jupyter Lab 使用pip安装 pip install jupyterlab 运行Jupyter Lab jupyter-lab

    24.4K4936发布于 2018-05-29
  • 来自专栏AutoML(自动机器学习)

    Slurm集群下如何远程连接Jupyter并使用GPU资源?

    运行jupyter-lab 第一步运行后会进入v100节点,之后我们需要运行jupyter环境,指定一下端口号,这里以8889为例,你也可以设置其他端口 jupyter-lab --port 8889

    2.2K30编辑于 2022-09-19
  • 来自专栏AutoML(自动机器学习)

    linux上如何给jupyterlab安装jupyterlab-lsp插件

    jupyterlab-lsp 给指定变成语言安装LSP server pip install python-language-server[python] 最后启动jupyterlab并新建一个ipynb文件 jupyter-lab

    4.4K30发布于 2021-02-02
  • 来自专栏好奇心Log

    Python如何将GrADs常用文件转换为NetCDF格式?

    =ctl.undef).plot(figsize=(9,5), cmap='jet') 以上需要注意两点: 1.如果在jupyter-lab中无法加载xgrads需要手动添加其路径,使用到的是

    3.7K20发布于 2021-08-26
  • 来自专栏气象学家

    Python如何将GrADs常用文件转换为NetCDF格式?

    =ctl.undef).plot(figsize=(9,5), cmap='jet') 以上需要注意两点: 1.如果在jupyter-lab中无法加载xgrads需要手动添加其路径,使用到的是

    2.8K20编辑于 2022-01-18
  • 来自专栏小码匠和老码农

    万字长文太可怕,数据科学神器JupyterLab的使用(精简版)

    coder@192 dev % 安装 conda install -c conda-forge jupyterlab 启动Jupyter lab,第一次启动会比较慢,要初始化些东东,耐心等待就行 jupyter-lab jupyter-nbconvert jupyter-run jupyter-troubleshoot jupyter-dejavu jupyter-lab

    2.7K10编辑于 2022-06-16
  • 来自专栏小码匠和老码农

    JupyterLab中代码自动补全神器一:lsp

    [all]' 安装插件 jupyter labextension install @krassowski/jupyterlab-lsp 重启动JupyterLab 使用 启动JupyterLab jupyter-lab

    13.8K10编辑于 2022-06-16
  • 来自专栏Pandas基础实践

    Pandas库的基础使用系列---基础环境搭建

    安装Jupyter-Lab库如果你的miniconda安装完成后,理论上启动命令行工具将看到如下画面,在正常的命令行前面加上了(base)运行一下命令安装JupyterLab库pip install jupyterlab

    94011编辑于 2023-12-08
  • 来自专栏逸鹏说道

    Jupyter ~ 像写文章般的 Coding

    我这边主要说一下怎么在Python的.ipynb,直接执行C#代码(Jupyter-lab是可以对Cell执行对应的代码) 在Cell使用 %%script csharp就可以了 ?

    1.1K30发布于 2018-07-23
  • 来自专栏AI模型部署实践

    混元DIT环境指南

    jupyter-lab启动命令:HF_ENDPOINT=https://hf-mirror.com jupyter lab --port 443 --allow-root访问方式:http://ip:

    1.8K10编辑于 2024-09-04
  • 来自专栏逸鹏说道

    Jupyter ~ 像写文章般的 Coding (附:同一个ipynb文件,执行多语言代码)

    Markdown就真的和写文章一样了,通过上下左右箭头进行演示 魔法操作符 %lsmagic 可以获取所有支持的操作符,也可以参考这篇文章 我这边主要说一下怎么在Python的.ipynb,直接执行C#代码(Jupyter-lab

    5.6K60发布于 2018-06-20
  • 来自专栏数据科学与人工智能

    金融科技:建模工作环境

    执行命令 jupyter-lab 成功启动后,如下图所示。 这个时候,就可以使用Python工作方式或者R工作方式,针对数据项目开展数据建模工作了。

    95910编辑于 2022-01-29
  • 来自专栏雨过天晴

    基于飞浆Paddlehub的口罩检测

    mirror.baidu.com/pypi/simple pip install --upgrade paddlehub -i https://pypi.tuna.tsinghua.edu.cn/simple jupyter-lab

    1.2K30发布于 2020-04-13
  • 来自专栏Python大数据分析

    神器 | JupyterLab,极其强大的下一代notebook!

    在命令行使用jupyter-lab或jupyter lab命令,然后默认浏览器会自动打开Jupyter Lab。

    2.1K10编辑于 2022-04-02
  • 来自专栏Coding01

    使用 MNIST 集入门 Tensoflow(1)

    启用: jupyter-lab ? 为了在不同的 conda 虚拟环境下使用 jupyterlab,可以安装插件 nb_conda_kernels。

    54110发布于 2021-02-24
  • 来自专栏BioIT爱好者

    JupyterLab Server 搭建与使用笔记

    c.NotebookApp.port = 8888 # 允许远程访问 c.NotebookApp.allow_remote_access = True 接下来输入jupyter lab 就可以启动 jupyter-lab

    2.1K10发布于 2021-10-15
  • 来自专栏AIOT

    在Jetson上玩转大模型Day11:SAM2应用

    个不同规模的模型全部下载,最大的sam2_hiera_large.pt也不到900MB,全部下载完的内容如下: 现在我们就可以简单执行下面指令,启动Jupyter学习环境: $ cd /sam2 && jupyter-lab

    86110编辑于 2024-11-08
  • 来自专栏Hadoop实操

    PySpark工作原理

    % conda install pyspark=2.4.4 % conda install openjdk 安装并启动Jupyterlab % conda install jupyterlab % jupyter-lab haiqiangli /Users/haiqiangli/anaconda3/envs/ml/bin/python3.7 /Users/haiqiangli/anaconda3/envs/ml/bin/jupyter-lab

    2.5K30发布于 2020-02-18
领券