Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,23 @@ JupyterLite is being tested against modern web browsers:
- Firefox 90+
- Chromium 89+

## Installing and running locally

Install this code in a virtual Python environment:
```bash
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
```

The above needs to be done only once.

Once the virtual environment has been set up with the packages installed, to run the server:

```bash
make serve
```

## Further Information and Updates

For more info, keep an eye on the JupyterLite documentation:
Expand Down