You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to run slicer serve slicer.ini and it results with the following error:
* Serving Flask app "cubes.server" (lazy loading)
* Environment: production
WARNING: This is a development server. Do not use it in a production deployment.
Use a production WSGI server instead.
* Debug mode: off
* Restarting with stat
\python\python37\python.exe: No module named slicer
I've investigated a bit and have found the part of the code that results in error:
The reason why it results with the error is because in the last line it's trying to run the command python -m slicer serve slicer.ini which results with the error:
>python -m slicer serve slicer.ini
AppData\Local\Programs\Python\Python37\python.exe: No module named slicer
How can I fix that?
The text was updated successfully, but these errors were encountered:
Solution: upgrade werkzeug by : pip install werkzeug -U (actually any werkzeug version >= 0.15.6 will work) and hope it won't conflict with any other part of cubes library
I'm trying to run
slicer serve slicer.ini
and it results with the following error:I've investigated a bit and have found the part of the code that results in error:
The reason why it results with the error is because in the last line it's trying to run the command
python -m slicer serve slicer.ini
which results with the error:How can I fix that?
The text was updated successfully, but these errors were encountered: