Skip to content

Instantly share code, notes, and snippets.

@cgpu
Created May 25, 2020 03:25
Show Gist options
  • Save cgpu/691b824a8983449b5219a3a57dadf62d to your computer and use it in GitHub Desktop.
Save cgpu/691b824a8983449b5219a3a57dadf62d to your computer and use it in GitHub Desktop.
jupyterlab/jupyterlab-monaco labextension
# Install nvm with node and npm
RUN curl https://raw.githubusercontent.com/creationix/nvm/v0.30.1/install.sh | bash && \
source /home/jovyan/.nvm/nvm.sh && \
nvm install 8.4 && \
npm install -g yarn && \
yarn config set ignore-engines true && \
cd /tmp && \
git clone https://github.com/jupyterlab/jupyterlab-monaco.git && \
cd jupyterlab-monaco && \
yarn install && \
yarn run build && \
jupyter labextension link .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment