Troubleshooting
Common Issues
Marimo icon does not appear in the launcher
Cause: marimo-jupyter-extension is not installed in the same Python environment as Jupyter.
Solution: Install the proxy in Jupyter's environment:
# Find where Jupyter is installed
which jupyter
# Install proxy in that environment
/path/to/jupyter/bin/pip install marimo-jupyter-extension
Marimo icon appears but fails to launch
Cause: marimo executable is not in the search path.
Solution: Ensure marimo is accessible via one of these methods:
-
Add to PATH in spawner environment:
-
Configure explicit path in
jupyterhub_config.py:
Marimo cannot find installed modules
Cause: marimo is installed in a different Python environment than the modules.
Solution: Install marimo in the same environment as your packages:
# If modules are in conda environment
/opt/conda/bin/pip install marimo
# If modules are in a virtualenv
/path/to/venv/bin/pip install marimo
Error: "No such option: --base-url"
Cause: marimo version is too old.
Solution: Upgrade to marimo 0.19.8 or newer:
JupyterHub Issues
| Issue | Solution |
|---|---|
| Service won't start | Check logs: journalctl -u jupyterhub -e |
| OAuth errors | Verify callback URL matches between GitHub and config |
| Permission denied | Ensure /opt/jupyterhub is owned by jupyterhub user |
| Proxy 502 errors | Check journalctl -u jupyterhub for marimo startup errors |
Debug Mode
To see detailed proxy logs, check the JupyterHub logs:
Or for local JupyterLab: