# jupyter **Repository Path**: triobox/jupyter ## Basic Information - **Project Name**: jupyter - **Description**: Jupyter metapackage for installation, docs and chat - **Primary Language**: Unknown - **License**: BSD-3-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-06-05 - **Last Updated**: 2021-06-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Jupyter *Read this in other languages: [English](README.md), [Español](README.es-ES.md), [Português](README.pt-BR.md)* Jupyter metapackage for installation and docs. ## Running the docs locally First navigate to the `/docs` directory and create a `conda` environment: ```bash conda env create -f environment.yml ``` Activate the environment: ```bash source activate jupyter_docs ``` Build the docs: ```bash make clean make html ``` The docs will be built in `build/html`. They can be viewed by opening `build/html/index.html` or starting an HTTP server and navigating to `0.0.0.0:8000` in your web browser. ```bash python3 -m http.server ```