Mudanças entre as edições de "Jupyter"
Ir para navegação
Ir para pesquisar
(Criou página com '= Checar Versão = jupyter --version = Instalação Jupyter Hub = [https://github.com/jupyterhub/jupyterhub GutHub JupyerHub]') |
|||
| Linha 4: | Linha 4: | ||
= Instalação Jupyter Hub = | = Instalação Jupyter Hub = | ||
[https://github.com/jupyterhub/jupyterhub GutHub JupyerHub] | [https://github.com/jupyterhub/jupyterhub GutHub JupyerHub] | ||
| + | |||
| + | Using pip | ||
| + | JupyterHub can be installed with pip, and the proxy with npm: | ||
| + | |||
| + | npm install -g configurable-http-proxy | ||
| + | python3 -m pip install jupyterhub | ||
| + | If you plan to run notebook servers locally, you will need to install the Jupyter notebook package: | ||
| + | |||
| + | python3 -m pip install --upgrade notebook | ||
| + | |||
| + | Start the Hub | ||
| + | To start the Hub on a specific url and port 10.0.1.2:443 with https: | ||
| + | |||
| + | jupyterhub --ip 10.0.1.2 --port 443 --ssl-key my_ssl.key --ssl-cert my_ssl.cert | ||
Edição das 12h41min de 31 de julho de 2020
Checar Versão
jupyter --version
Instalação Jupyter Hub
Using pip JupyterHub can be installed with pip, and the proxy with npm:
npm install -g configurable-http-proxy python3 -m pip install jupyterhub
If you plan to run notebook servers locally, you will need to install the Jupyter notebook package:
python3 -m pip install --upgrade notebook
Start the Hub To start the Hub on a specific url and port 10.0.1.2:443 with https:
jupyterhub --ip 10.0.1.2 --port 443 --ssl-key my_ssl.key --ssl-cert my_ssl.cert