mirror of
https://github.com/EyeTrackVR/EyeTrackVR.git
synced 2025-11-04 14:39:42 +08:00
Create README.md
Created readme to make this process simpler and less error prone.
This commit is contained in:
parent
0d6e04a679
commit
7fade5a0de
32
RANSACApp/README.md
Normal file
32
RANSACApp/README.md
Normal file
@ -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
|
||||||
|
|
||||||
Loading…
Reference in New Issue
Block a user