Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jupyter/jupyter
Jupyter metapackage for installation, docs and chat
https://github.com/jupyter/jupyter
Last synced: 4 days ago
JSON representation
Jupyter metapackage for installation, docs and chat
- Host: GitHub
- URL: https://github.com/jupyter/jupyter
- Owner: jupyter
- License: bsd-3-clause
- Created: 2015-06-04T21:05:00.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-10-27T05:25:35.000Z (about 2 months ago)
- Last Synced: 2024-11-04T07:02:14.308Z (about 1 month ago)
- Language: Python
- Homepage: https://jupyter.readthedocs.io/
- Size: 7.72 MB
- Stars: 14,921
- Watchers: 622
- Forks: 4,103
- Open Issues: 40
-
Metadata Files:
- Readme: README.es-ES.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
- awesome - jupyter - Jupyter metapackage for installation, docs and chat (Python)
- awesome-ccamel - jupyter/jupyter - Jupyter metapackage for installation, docs and chat (Python)
- awesome-starred - jupyter - Jupyter metapackage for installation, docs and chat (Python)
- awesome-starred - jupyter/jupyter - Jupyter metapackage for installation, docs and chat (others)
README
# Jupyter
*Leer en otros idiomas: [English](README.md), [Español](README.es-ES.md), [Português](README.pt-BR.md), [Français](README.fr-FR.md)*
Meta paquete de Jupyter para su instalación y documentación.
## Ejecutando los documentos localmente
Primero navega al directorio `/docs` y crea un entorno en `conda`:```bash
conda env create -f environment.yml
```Activa el entorno:
```bash
source activate jupyter_docs
```Genera los documentos:
```bash
make clean
make html
```Los documentos se crearán en `build/html`. Éstos pueden ser vistos abriendo `build/html/index.html` o iniciando un servidor HTTP y navegando hasta `0.0.0.0:8000` en tu explorador web.
```bash
python3 -m http.server
```