Reputation: 333
I have a self-hosted sandstorm.io instance with the ipython app installed.
How do I install python modules so that they are accessible from ipython notebooks?
Ipython is packaged in a sandstorm app with pre-installed modules. As apps are in sandboxes, pip install sympy
is not enough.
Upvotes: 3
Views: 281
Reputation: 45151
Unfortunately, this currently isn't possible, because inside a Sandstorm container the app code is read-only. To make this work, we'd need to do one of the following:
Upvotes: 3