fbuetler / asvz-bot

ASVZ Bot to enroll to lessons. Get a place when the registration opens or when a place gets free. Works for ETH, UZH and ZHAW students.
GNU General Public License v3.0
66 stars 25 forks source link

No version satisfies venv #9

Closed LinoHofstetter closed 2 years ago

LinoHofstetter commented 2 years ago

When I execute

cd src python3 -m pip install venv python3 -m venv .venv source .venv/bin/activate python3 -m pip install -r requirements.txt python3 asvz_bot.py -h

in the terminal, it throws these two errors. Any idea why?

ERROR: Could not find a version that satisfies the requirement venv (from versions: none) ERROR: No matching distribution found for venv

fbuetler commented 2 years ago

What happens if you omit python3 -m pip install venv? That means:

cd src
python3 -m venv .venv
source .venv/bin/activate
python3 -m pip install -r requirements.txt
python3 asvz_bot.py -h