On Thursday, October 13, 2016 at 4:42:44 AM UTC+2, [email protected] wrote: > > Hi, Jupyter community > > I am wondering if we can have a way to let Jupyter running on a > Linux Power Platform? We know we only have Anaconda with Mac, Windows, > Linux Server, how can we have Jupyter with Linux Power Platform? Does > anyone knew? > > Thanks in advance! > Hi,
Do you have virtualenv in your package manager, for example on fedora it's python3-virtualenv.noarch ? If yes: ======================================================= mkdir YourVenvPath virtualenv --system-site-packages -p python3 YourVenvPath source YourVenvPath/bin/activate pip install jupyter deactivate ======================================================= Then enjoy: ======================================================= source YourVenvPath/bin/activate jupyter-console deactivate ======================================================= -- You received this message because you are subscribed to the Google Groups "Project Jupyter" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/jupyter/7b2624c6-d712-4da6-a3ea-4055a467ed24%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
