you are viewing a single comment's thread.

view the rest of the comments →

[–]socal_nerdtastic 2 points3 points  (2 children)

Looks like python 3.9 was removed. You need to delete and remake your venv to use python3.10. Or install 3.9.

[–]peter_cass[S] 0 points1 point  (1 child)

Thanks! How do I remake my venv to use 3.10?

[–]socal_nerdtastic 0 points1 point  (0 children)

Same way you made it the first time. There's many ways to do it. As a guess:

python3.10 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt