I am using some instructions from here, to install and run python scripts/setup.py, to start a server for a project I am working on:
https://docs.google.com/document/d/11IPqZcDcLTd2mtYaR5ONpDxFgL9Y1nMNTDvEarST8Wk/edit#
Specifically, I am using these commands (I am running this on macOS, terminal):
Option 2: Use Virtual Environment:
git clone http://github.com/wroscoe/donkey.git
virtualenv -p python3 donkey_env
source donkey_env/bin/activate
pip install -e donkey[server]
cd donkey
python scripts/setup.py
python scripts/serve.py
I have followed them line by line but am getting, this error:
python: can't open file 'scripts/setup.py': [Errno 2] No such file or directory
It seems that the setup.py file is in the donkey folder, so I have no idea why it is not able to run or find it.
Additionally, I have googled the web for hours searching for an answer and have not come across anything. Any guidance, advice, or help would be appreciated.