From 7fade5a0de575df4cd0142c779eab37f4974f17c Mon Sep 17 00:00:00 2001 From: DaOfficialWizard <45744329+ZanzyTHEbar@users.noreply.github.com> Date: Mon, 4 Jul 2022 01:00:42 +0100 Subject: [PATCH] Create README.md Created readme to make this process simpler and less error prone. --- RANSACApp/README.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 RANSACApp/README.md diff --git a/RANSACApp/README.md b/RANSACApp/README.md new file mode 100644 index 0000000..d42dc9a --- /dev/null +++ b/RANSACApp/README.md @@ -0,0 +1,32 @@ +# How to spin up a dev environment + +firstly, ensure that the virtualenv module is installed onto your pc. + + pip install virtualenv + +Next, cd into the RANSACApp directory and run: + + python -m virtualenv venv + +On windows, next we run: + + venv\Scripts\activate + +On linux we run: + + source venv\Scripts\activate + +Next, we install the dependancies and build: + + pip install -r requirements.txt + +When that is complete, move on to building: + + pyinstaller eyetrackapp.spec + +Now we can run the executable: + + cd dist/eyetrackapp + + ./eyetrackapp +