mirror of
https://github.com/gosticks/body-pose-animation.git
synced 2025-10-16 11:45:42 +00:00
WIP setup: add readme and requirements.txt
This commit is contained in:
parent
7d6b85e293
commit
8fb6370649
2
.vscode/settings.json
vendored
2
.vscode/settings.json
vendored
@ -1,3 +1,3 @@
|
||||
{
|
||||
"python.pythonPath": "/home/wlad/.conda/envs/tum-3d-proj/bin/python"
|
||||
"python.pythonPath": "~/.conda/envs/tum-3d-proj/bin/python"
|
||||
}
|
||||
28
README.md
28
README.md
@ -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
12
requirements.txt
Normal 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
|
||||
Loading…
Reference in New Issue
Block a user