-
Hi, since yesterday I can no longer start marimo on Ubuntu... from marimo._server.model import SessionMode
from marimo._server.start import start
start(filename=None, mode=SessionMode.EDIT, development_mode=False, quiet=False, include_code=False, headless=True, port=None, host='localhost', watch=False) Does anyone have an idea how I can investigate this?? |
Beta Was this translation helpful? Give feedback.
Answered by
MrHenning
Feb 15, 2024
Replies: 2 comments 9 replies
-
Uh oh! @MrHenning, can you run |
Beta Was this translation helpful? Give feedback.
9 replies
-
I figured out the problem I was having. I had an entry in my /etc/hosts for
127.0.0.1 which was non-standard instead of 'localhost' (I had it changed
for another server set up I had a long time ago). That fixed the problem. I
tried this after uninstalling every Python version installation I had along
with their symbolic links and reinstalling which didn't work.
gani -
…On Wed, Apr 3, 2024 at 3:14 PM Akshay Agrawal ***@***.***> wrote:
@gganapat <https://github.com/gganapat>
I don't use conda, so you shouldn't have to either.
Have you accidentally installed marimo system-wide? You can check by
typing which marimo (paste the output here if you need help).
Here is what usually fixes this problem.
1. Deactivate all virtual environments.
2. pip uninstall marimo
3. Create and activate a new virtual environment.
4. Install marimo in that virtual environment.
5. Try running marimo again.
If python -m marimo tutorial intro works but marimo tutorial intro
doesn't, that's a hint marimo may have been installed system-wide.
If this still doesn't work let me know.
—
Reply to this email directly, view it on GitHub
<#778 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AK7NNIW7YTSH7UG5NFUTZ2TY3R5NDAVCNFSM6AAAAABDF7CTFGVHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM4TAMBSGU4TQ>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Ha! Restarting did not change anything.
But I removed marimo again using conda, re-installed it with pip, and it still didn't work.
I removed it with pip, created a new conda env and re-installed it with conda, and now it works 😃
I am sure I have done all these things before, without success...
Anyway, thanks a lot for your time @akshayka !
And btw, marimo is absolutely fantastic!!! I was missing the reactivity and interactivity in Python notebooks so much after getting used to Pluto.jl with Julia!