The error message indicates that the make dev-server command failed due to the absence of the fork function on windows. The fork function is used by the Tornado framework to spawn multiple processes for the server.
An alternative approach to run the server that I tried was to run the webserver.py script directly with Python using this command:
python3 -m server/webserver. This command should execute the webserver.py script without attempting to fork the processes, however I run into some missing modules errors from webserver.py.
The error message indicates that the
make dev-server
command failed due to the absence of thefork
function on windows. The fork function is used by the Tornado framework to spawn multiple processes for the server.An alternative approach to run the server that I tried was to run the
webserver.py
script directly with Python using this command:python3 -m server/webserver
. This command should execute thewebserver.py
script without attempting to fork the processes, however I run into some missing modules errors fromwebserver.py
.