diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9afeef3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +pyenv/ +*.swp +*.pyc diff --git a/Readme.md b/Readme.md index 4a23ac8..b2820bc 100644 --- a/Readme.md +++ b/Readme.md @@ -5,4 +5,13 @@ - Python 3.5 - [MyPy](http://www.mypy-lang.org/ ) für statische Typchecks - [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 +``` +