Hello EbonJaegar, Staudey and fellow Python users.
python3 --version
Python 3.12.10
python --version
Python 2.7.18
All this while, I used python3 -m venv program_env
to create 2 different venvs and, once inside the venvs, I use python main.py
to activate the python files.
I encountered errors trying to run my python files inside my venv environment, after this week's sync.
Do I need to install pip or pip2?
Do I need to install anything else too?
SOLVED : First I installed pip
, then git cloned
the entire program starting from scratch, together with reinitializing the virtual environment. pip2
is not required for my case.