-> python3 --version = 3.10
-> python --version = 3.12
I usually run my code with python3 -m main, being on my conda virtual env and it works great. But when I want to run a notebook, I choose my interpreter (correct venv) but it runs the code with python (not python3) leading to "No module named ..."
What can I do ?
- Downgrade python and python -m pip install for python instead of python3 ?
- Try to configure vs code to use python3 -m ? This would be my prefered solution but I didn't find how to do it
python3 -m mainin my env