CLI based tool to deploy Jupyter applications that integrates with infrastructure as code frameworks.
Project description
Jupyter Deploy
Jupyter deploy is an open-source command line interface tool (CLI) to deploy and manage JupyterLab applications to remote compute instances provided by a Cloud provider. Once deployed, you can access your application directly from your web browser, and share its dedicated URL with collaborators. Collaborators may then work together in real time on the same JupyterLab application.
Templates
The jupyter-deploy CLI interacts with templates: infrastructure-as-code packages
that you can use to create your own project and deploy resources in your own cloud provider account.
Templates are nominally python packages distributed on PyPI. You can install and manage templates in your virtual
environment with pip or uv. The CLI automatically finds the templates installed in your Python environment.
The CLI ships with a default template: jupyter-deploy-tf-aws-ec2-base.
Refer to jupyter-deploy-tf-aws-ec2-base on PyPI for instructions on setting up the AWS infrastructure needed for your deployment.
Installation
Consider creating or activating a virtual environment.
Install with pip
pip install jupyter-deploy
The CLI
Entry points
From a terminal, run:
jupyter-deploy --help
# or use the alias
jd --help
# or use the jupyter CLI
jupyter deploy --help
Start a project
First create a new project directory:
mkdir my-jupyter-deployment
cd my-jupyter-deployment
In the rest of this page, we will use the default template.
# Get started with the default template
jupyter-deploy init .
# Or use the init flags to select another template that you installed in your virtual environment
jupyter-deploy init --help
# For example, the AWS EC2 base template
jupyter-deploy init -E terraform -P aws -I ec2 -T base .
Configure your project
There are two ways to configure your project:
File based:
Edit the variables.yaml file:
- add required variable values in the
requiredandrequired_sensitivesection - optionally override default values in the
overridessection
Then run:
jupyter-deploy config
Interactive experience: Alternatively, fill in the variable values from your terminal with:
# Discover the variables available for your specific template
jupyter-deploy config --help
# Run the interactive configuration and set the variables values as prompted
jupyter-deploy config
# Optionally save sensitive values to your project files
# Sensitive values are passwords, secret keys or API tokens that your applications
# need to access at runtime.
jupyter-deploy config -s
# Update a variable value afterwards (variable names depends on the template you use).
jupyter-deploy config --instance-type t3.small
Deploy your project
The next step is to actually create your infrastructure
jupyter-deploy up
Access your application
Once the project was successfully deployed, open your application in your web browser with:
jupyter-deploy open
You will be prompted to authenticate. You can share this URL with collaborators, they will prompted to authenticate on their own web browser.
Turn on and off your compute instance
The default template supports temporarily turning off your instance to reduce your cloud bill.
# Retrieve the current status of your compute instance
jupyter-deploy host status
# Stop an instance
jupyter-deploy host stop
# Restart it
jupyter-deploy host start
# You may also need to start the containers that run your application
jupyter-deploy server start
Winddown your resources
To delete all the resources, run:
jupyter-deploy down
License
The jupyter-deploy CLI is licensed under the MIT License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file jupyter_deploy-0.5.0.tar.gz.
File metadata
- Download URL: jupyter_deploy-0.5.0.tar.gz
- Upload date:
- Size: 264.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9520b2a8f836ee64587707cfe5ed89d6e5fde731d4936042b0537de78e2639a8
|
|
| MD5 |
a7862db22239680f047761a578e395f1
|
|
| BLAKE2b-256 |
9c008c04d6a5fbecf8c24efaaaaf1f9f3ee11f314e5b412d09274fca1e224188
|
File details
Details for the file jupyter_deploy-0.5.0-py3-none-any.whl.
File metadata
- Download URL: jupyter_deploy-0.5.0-py3-none-any.whl
- Upload date:
- Size: 174.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c89ed6ea51b8db3c5b32a1fd802e32b580b5069807db44f08199024571cc432a
|
|
| MD5 |
21b129b3500beb5ceb15afcbc92d39ca
|
|
| BLAKE2b-256 |
0b749a9b59067b69f7ad7f9c9a8df963c21d4b639cc277fa3cfe8b4992ce7a75
|