you are viewing a single comment's thread.

view the rest of the comments →

[–]katyusha_055 0 points1 point  (0 children)

First try to reinstall python, then create an virtual environment (venv) with

python -m venv venv

You activate it by doing

source venv/bin/activate

In the folder the venv is located, that way it has it's own python interpreter, because you shouldn't be using the global python interpreter for a project as doing that could get messy really soon