A project for an algorithms class using AR/VR data
A python guide. You can look for others if you like.
cd [repository name]
python -m venv venv
source venv/bin/activate
Why use a virtual environment? A virtual environment allows you to use different version of python and dependancy with conflict with other projects.
Two options either manually or through the requirements.txt
Recommended if the group is good at updating the requirements.txt when they add libraries to the code.
pip install -r requirements.txt
pip install -e .
Requirements.txt contains the dependancies and version for this project.
install python libraries:
pip install matplotlib
pip install networkx
pip install numpy
pip install -U scikit-learn
- completion_time_and_accuracy.csv
- converstation_graphs.json
- proximity_graphs.json
- shared_attention_graphs.json
- Does it work?
- Write report
- Update readme.md Dependencies section
- requirement.txt
- manually install code block