Mudanças entre as edições de "Jupyter"

De BrapciWiki
Ir para navegação Ir para pesquisar
Linha 1: Linha 1:
 +
O Jupyter Hub da Plataforma de Ciência de Dados aplicada à Saúde (PCDaS), disponível para usiários de projetos parceiros, roda kernels em Python e R conectados ao dados já indexados em Elaticserach.
 +
 
= Checar Versão =
 
= Checar Versão =
 
jupyter --version
 
jupyter --version
Linha 18: Linha 20:
  
 
  jupyterhub --ip 10.0.1.2 --port 443 --ssl-key my_ssl.key --ssl-cert my_ssl.cert
 
  jupyterhub --ip 10.0.1.2 --port 443 --ssl-key my_ssl.key --ssl-cert my_ssl.cert
 +
 +
== R with JupyterHub ==
 +
[https://github.com/IRkernel/IRkernel/ GitHub R]

Edição das 12h51min de 31 de julho de 2020

O Jupyter Hub da Plataforma de Ciência de Dados aplicada à Saúde (PCDaS), disponível para usiários de projetos parceiros, roda kernels em Python e R conectados ao dados já indexados em Elaticserach.

Checar Versão

jupyter --version

Instalação Jupyter Hub

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

R with JupyterHub

GitHub R