Open Andrej730 opened 4 years ago
Figured it was werkzeug issue. Kind of similar to https://github.com/pallets/werkzeug/issues/1619 and fixed in https://github.com/pallets/werkzeug/commit/ab1b55600c314a615ccf36d709aade244cb118f5
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?