-
|
Hello, I recently installed Meerschaum and I am trying to start the mrsm stack using the command: I created a virtual environment and activated it, yet the issue is resolved. Python 3.8.14And I am using Ubuntu I even tried to run the command Can someone please help me out in resolving the issue or point out what I am doing wrong? Thanks in advance :") |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Hi @lrangar, thanks for reporting this bug! I spun up an Ubuntu 18.04 VM to investigate and was able to reproduce the issue. I believe this edge case was brought up by differences in the Python 3.8 standard library between Ubuntu 18.04 and 20.04+. I threw together a quick patch and published pip install --upgrade meerschaumHopefully this should fix the issue! If you run into more problems, I recommend upgrading to Ubuntu 20.04 if possible. Lastly, don't forget to add your user to the sudo usermod -aG docker $USER |
Beta Was this translation helpful? Give feedback.
Hi @lrangar, thanks for reporting this bug! I spun up an Ubuntu 18.04 VM to investigate and was able to reproduce the issue. I believe this edge case was brought up by differences in the Python 3.8 standard library between Ubuntu 18.04 and 20.04+.
I threw together a quick patch and published
v1.3.2which should fix things for you:Hopefully this should fix the issue! If you run into more problems, I recommend upgrading to Ubuntu 20.04 if possible.
Lastly, don't forget to add your user to the
dockergroup for thestackcommand to work:sudo usermod -aG docker $USER