brainworkshop
brainworkshop copied to clipboard
Additional instructions for running on linux
When trying to run brainworkshop, I got the following error:
/usr/bin/env: ‘python’: No such file or directory
My not particularly qualified guess is that ‘python’ is called rather than ‘python3’ because both python 2 and 3 are supported? Anyway, my suggestion is that the readme should mention that it might be necessary to link python to python3 by:
a) Checking that python is installed and where it is by running: whereis python3
/ whereis python2
/depending on the installed version of python).
b) Creating a symlink to the version of python on the system: sudo ln -s /usr/bin/python3 /usr/bin/python
/ sudo ln -s /usr/bin/python2 /usr/bin/python