explain how to enter the mentioned venv

there was a line missing how to activate the virtual environment. In the described way it would've affected or harmed the system-wide installation
This commit is contained in:
Nils Magnus 2024-03-23 23:52:11 +00:00
parent 16fc233881
commit 7e6d4ee581

View File

@ -9,7 +9,8 @@ python virtual environment:
```
$ cd <local_folder>/
$ python -m venv venv/
$ python -m pip install -r requirements.txt
$ source venv/bin/activate
(venv)$ python -m pip install -r requirements.txt
```
## Configuration
@ -39,4 +40,3 @@ $ nohup python main.py > log/hc_spider.log 2> log/hc_spider.err <&- &
```
In case you running the tool in background you can stop the execution with `$ echo exit > <watchdog_file>`