instructions on using a venv
This commit is contained in:
parent
06483bae4d
commit
2075f49bd5
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
pyenv/
|
||||
*.swp
|
||||
*.pyc
|
11
Readme.md
11
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
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in a new issue