Published
- 1 min read
python venv from requirements.txt
The solution for this is noted below
python venv from requirements.txt
Solution
# activate your venv:
source venv/bin/activate
# install requirements (preferably put it inside the venv folder)
pip install -r requirements.txt
Try other methods by searching on the site. That is if this doesn’t work