-
Trying to setup Pycharm to use the interactive debugger with Emmett. I'm setting up this command to run to start Emmett python3 -m emmett -a appname develop But get this error: Traceback (most recent call last): Is there a way to start the Emmett server from Python? Or, am I going about this all wrong? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
@jpsteil unfortunately seems that the reloader is messing a bit with imports. The I suggest you to use directly the |
Beta Was this translation helpful? Give feedback.
-
Thanks for the reply! -Jim |
Beta Was this translation helpful? Give feedback.
@jpsteil unfortunately seems that the reloader is messing a bit with imports. The
develop
command works using the-m
notation only with--no-reloader
option.I suggest you to use directly the
emmett develop
command from a virtual environment.