/bin/bash set -e # 安装 miniconda3 jupyterlab 创建虚拟环境 CONDA_ENV_NAME=myconda PYTHON_VE...
conda activate deep_rl conda install jupyterlab conda install ipykernel # 把当前conda虚拟环境deep_rl 显示为 jupyterlab中的kernel名为deep_rl:stable-baselines # 方便我们在jupyter lab切换环境 python -m ipykernel install --user --name deep_rl --display-name deep_rl:stable-baselines3 1. 2. 3...
jupyter labextension install @jupyterlab/toc && \ # github插件 # jupyter labextension install @jupyterlab/github && \ # git插件 pip install --upgrade jupyterlab-git && \ jupyter labextension install @jupyterlab/git && \ jupyter serverextension enable --py jupyterlab_git && \ # latex插件 ju...
pip install jupyter notebook 1. 3、配置远程访问jupyter 3.1、生成密码 在ubuntu的命令行里输入ipython打开ipython,(没有的话,输入python也可以) ipython 1. 在python命令行里分别输入: from notebook.auth import passwd passwd() 1. 2. 输完之后,设定一个密码,会生成一个sha1的秘钥会有如下的结果: 这时候...
安装python-language-server[all] 插件 安装jupyterlab-language-pack-zh-CN 中文显示 集成pandas、numpy、matplotlib、tqdm、scikit-learn、ipywidgets、ipympl 等常用库 使用方法 拉取镜像3.0.5版本的镜像 docker pull captainji/jupyterlab:3.0.5 建立容器命令 ...
DockerSpawner.args 可以追加 JupyterLab 容器的启动参数,默认启动命令是“start-notebook.sh --ip=0.0.0.0 --port=8888”,可以追加多个参数(如上述设置了配置了日志输出级别为WARN,JupyterLab 配置文件中的配置都可以使用此方式进行配置,相关配置可以参考官方文档),参数格式是 python 的 dict。
DockerSpawner.args 可以追加 JupyterLab 容器的启动参数,默认启动命令是“start-notebook.sh --ip=0.0.0.0 --port=8888”,可以追加多个参数(如上述设置了配置了日志输出级别为WARN,JupyterLab 配置文件中的配置都可以使用此方式进行配置,相关配置可以参考官方文档),参数格式是 python 的 dict。
NAS的Docker应用来安装Jupyter服务,分享给希望尝试学习Python编程的读者。 首先,我们还是在群晖的Docker应用中的“注册表”标签里搜索jupyter,在结果中我们下载第一个镜像作为例子: 下载第一个镜像“jupyter/datascience notebook” 大家其实可以看到Jupyter的镜像很多的版本,各个版本的区别主要是根据不同的应用场景集成了不...
除了VNC 常用的 Conda、CUDA 和 Jupyterlab 也给大家整理了安装脚本,内容如下。 首先使用 vim 创建一个conda_install.sh,并粘贴下面脚本内容,然后使用 bash 指令运行即可。 #!/bin/bash set-e # 安装 miniconda3 jupyterlab 创建虚拟环境CONDA_ENV_NAME=mycondaPYTHON_VERSION=3.10CONDA=/root/miniconda3.sh;\...
jupyter lab --allow-root <!--无命令行模式--> nohup jupyter lab --allow-root & <!--下载 python 所需要的包--> python3 -m pip install -i https://pypi.tuna.tsinghua.edu.cn/simple crypto pycryptodome requests <!--进入链接,输入链接密码,进行使用--> ...