Created
May 25, 2020 03:25
-
-
Save cgpu/691b824a8983449b5219a3a57dadf62d to your computer and use it in GitHub Desktop.
jupyterlab/jupyterlab-monaco labextension
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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