A web UI for exploring Mamba environments
This project is archived. Development is now happening in https://github.com/mamba-org/jupyter_conda
Open Mamba Navigator:
Open JupyterLab:
# create a new conda environment
conda env create --file=binder/environment.yml
# activate the environment
conda activate mamba-navigator
# install the dependencies
yarn
# build the application
yarn run build
# start the app
python main.py
# or with the --no-browser option
python main.py --no-browser
The app will open in the browser at http://localhost:8888.
There is also a watch script to automatically rebuild the application when there is a new change:
yarn run watch
New plugins can be added to the application, by creating a new folder under src/plugins
and requiring it in the app startup.
Plugins follow the same structure and principles as the core JupyterLab Plugins, and can integrate with other JavaScript libraries such as React.
It is possible to reuse existing third-party JupyterLab extensions in this custom build, by adding them to the dependencies in package.json
and to the list of modules in src/index.ts
. Check the p5 Notebook index.ts file as an example.
For more examples on building custom JupyterLab-based front-ends: