DownloadLatest Release v0.10.0

Install SignalPilot

Python package for Jupyter notebooks. Install directly from PyPI with pip.

Install SignalPilot AI

pip install signalpilot-ai
Recommended Method
Version 0.10.0Python 3.10+Free to startView on PyPI

Installation Guide

Follow these simple steps to install SignalPilot

1
Ensure JupyterLab 4+ is installed
Make sure you have JupyterLab version 4 or higher installed
jupyter lab --version
Check Version v4+
2
Install SignalPilot extension
Install the latest version of SignalPilot from PyPI
pip install signalpilot-ai
Check Version v0.10.0
3
Start JupyterLab and login
Restart JupyterLab, check the right sidebar for the extension, and login to start using
jupyter lab
Start JupyterLab

Frequently Asked Questions

Common issues and solutions for SignalPilot installation

General Troubleshooting

Extension not appearing in JupyterLab:

• Restart JupyterLab completely after installation

• Check the right sidebar for the signalpilot-ai extension

• Ensure you're using JupyterLab 4.0+ (not Jupyter Notebook)

• Clear your browser cache and refresh

Permission errors during installation:

pip install --user signalpilot-ai

Still having issues?

Check that all requirements are met:

python --version && jupyter lab --version

Should show Python 3.10+ and JupyterLab 4.0+

Conda Installation Issues

Q: I'm having issues installing with conda, what should I do?

A: Use pip within your conda environment for the best compatibility.

Activate your conda environment first:

conda activate your-environment-name

Then install SignalPilot with pip:

pip install signalpilot-ai

If you need to create a new environment with the right Python version:

conda create -n signalpilot-ai-env python=3.11 jupyterlab
Jupyter Notebook vs JupyterLab

Q: Can I use SignalPilot with Jupyter Notebook?

A: No, SignalPilot currently only supports JupyterLab 4.0+. Jupyter Notebook (the classic notebook interface) is not supported.

To switch from Jupyter Notebook to JupyterLab:

pip install jupyterlab

Then start with: jupyter lab instead of jupyter notebook