Setup with a Conda environment
Follow the below steps to use and develop Jupyter UI.
You need Miniconda up-and-running on your machine.
caution
macOS or Linux are supported out-of-the-box.
Cygwin is required on Windows and your will need to run the commands from the Cygwin shell.
Clone the jupyter-ui repository.
git clone https://github.com/datalayer/jupyter-ui.git && \
cd jupyter-ui
If you already have created a conda environment named datalayer, please remove it.
conda deactivate
conda remove -y --all -n datalayer
Create a new conda environment and activate it.
conda env create -f environment.yml
conda activate datalayer