diff --git a/.gitignore b/.gitignore index fbb852b..a5f87ba 100644 --- a/.gitignore +++ b/.gitignore @@ -8,6 +8,7 @@ build/ .env .vscode ilias_cookies.txt +PFERD.egg-info/ # PyInstaller sync_url.spec diff --git a/README.md b/README.md index ed92500..44138db 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ A full example setup and initial use could look like: $ mkdir Vorlesungen $ cd Vorlesungen $ python3 -m venv .venv -$ .venv/bin/activate +$ source .venv/bin/activate $ pip install git+https://github.com/Garmelon/PFERD@v2.5.3 $ curl -O https://raw.githubusercontent.com/Garmelon/PFERD/v2.5.3/example_config.py $ python3 example_config.py @@ -69,7 +69,7 @@ $ deactivate Subsequent runs of the program might look like: ``` $ cd Vorlesungen -$ .venv/bin/activate +$ source .venv/bin/activate $ python3 example_config.py $ deactivate ```