Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create Jupyter #68

Merged
merged 1 commit into from
Nov 2, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions docs/Tools/Jupyter
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Jupyter - notebook - lab

Jupyterlab is an interactive notebook environment to run Python, R and many more languages.
jupyter.org



## Installation
Jupyter can be installed using either `conda` or `mamba`
conda: `conda install -c anaconda jupyter`
mamba: `mamba install -c anaconda jupyter`

## Launching jupyter notebook or lab

#### locally:
Launch a new notebook session using :
```bash
jupyter notebook
```
or a jupyter lab session:
```bash
jupyter lab
```
#### cluster
See [here](https://bbglab.github.io/bbgwiki/Cluster_basics/Notebooks_in_cluster/) for the instructions to launch and connect to jupyter sessions on the computing cluster

### Change conda environment from inside a running cluster session

```bash
conda install -c anaconda ipykernel
python -m ipykernel install --user --name=env_name
```