instructions on using a venv

This commit is contained in:
Trolli Schmittlauch 2017-06-18 22:49:37 +02:00
parent 06483bae4d
commit 2075f49bd5
2 changed files with 13 additions and 1 deletions

3
.gitignore vendored Normal file
View file

@ -0,0 +1,3 @@
pyenv/
*.swp
*.pyc

View file

@ -5,4 +5,13 @@
- Python 3.5 - Python 3.5
- [MyPy](http://www.mypy-lang.org/ ) für statische Typchecks - [MyPy](http://www.mypy-lang.org/ ) für statische Typchecks
- [Pandoc](https://pandoc.org/ ) für die Dokumentation - [Pandoc](https://pandoc.org/ ) für die Dokumentation
- Python Module: siehe requirements.txt - Python Module: siehe [requirements.txt](https://pip.pypa.io/en/latest/user_guide/#requirements-files )
Zur einfachen Entwicklung wird die Verwendung eines [venv](https://docs.python.org/3/library/venv.html ) empfohlen, bevorzugter Name: *pyenv*
Erstellung + Installation aller benötigten Module:
```bash
$ python -m venv pyenv
$ ./pyenv/bin/pip install -r requirements.txt
```