So, my situation is simple:
- I've created a
rye
project and added some dependencies - I've created a
some_notebook.marimo.py
with using some of those dependencies I've installed - Now I want to share only a notebook, without all those
rye
complications - The person who will download and open my marimo nb should be able to easily install those dependencies
The only reason why default marimo install helper is not working for me - because of some of the projects I use is available only from
git+https://my-private-gitlab.com/...
or self-hosted pypi alternatives (so there is a custom pypi
index-url
)
With jupyter I can use
%pip install
inside nb and that solves my problem, but how to do it inside marimo nb without creating a project or installing deps outside of marimo?