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

Update Contribution Guide to require node v12+ #7479

Merged
merged 1 commit into from Nov 6, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 7 additions & 1 deletion CONTRIBUTING.md
Expand Up @@ -69,7 +69,7 @@ You can launch a binder with the latest JupyterLab master to test something (thi

### Installing Node.js and jlpm

Building JupyterLab from its GitHub source code requires Node.js.
Building JupyterLab from its GitHub source code requires Node.js. The development version requires Node.js version 12+.

If you use `conda`, you can get it with:

Expand All @@ -85,6 +85,12 @@ brew install node

You can also use the installer from the [Node.js](https://nodejs.org) website.

To check which version of Node.js is installed:

```bash
node -v
```

## Installing JupyterLab

JupyterLab requires Jupyter Notebook version 4.3 or later.
Expand Down