WIP setup: add readme and requirements.txt

This commit is contained in:
Wlad Meixner 2021-01-08 23:51:51 +01:00 committed by Wlad
parent 7d6b85e293
commit 8fb6370649
3 changed files with 41 additions and 1 deletions

View File

@ -1,3 +1,3 @@
{
"python.pythonPath": "/home/wlad/.conda/envs/tum-3d-proj/bin/python"
"python.pythonPath": "~/.conda/envs/tum-3d-proj/bin/python"
}

View File

@ -1,6 +1,34 @@
# realtime-body-tracking
## Installation
This project is using python version **3.6.0**. It is also recommended to use anaconda for managing your python environments.
### Conda Environment
Create a new conda env by typing
```bash
conda create --name tum-3d-proj python=3.6
```
When using VSCode the IDE should automatically use the python interpreter created by conda.
### Pip packages
The required pip packages are stored within the `requirements.txt` file and can be installed via
```bash
pip install -r requirements.txt
```
### Exporting imported packages to pip
```bash
pip freeze > requirements.txt
```
Since pip is trash and does not save imported packages in a file within the project you have to force it to do so.
## Links

12
requirements.txt Normal file
View File

@ -0,0 +1,12 @@
autopep8==1.5.4
certifi==2020.12.5
cycler==0.10.0
kiwisolver==1.3.1
matplotlib==3.3.3
numpy==1.19.5
Pillow==8.1.0
pycodestyle==2.6.0
pyparsing==2.4.7
python-dateutil==2.8.1
PyYAML==5.3.1
six==1.15.0