I'm setting up PyCharm for my app development and have encountered a strange issue. Even though I set my project to use the very same virtual environment (I used the built-in venv) and made sure PyCharm's interpreter points to the same path, the versions of Python are different.
Everything I googled up was someone's not setting the interpreter inside PyCharm correctly. I also checked PyCharm's guide and haven't found anything that I haven't already tried.
These are the results from the Terminal (I'm using Linux Mint 19), inside my venv:
(venv) x:~/Programming/Shopping_Tracker$ python --version
Python 3.6.7
(venv) x:~/Programming/Shopping_Tracker$ which python
/home/anna/Programming/Shopping_Tracker/venv/bin/python
And these are from PyCharm's Terminal:
(venv) python --version
Python 3.7.3
(venv) which python
/home/anna/Programming/Shopping_Tracker/venv/bin/python
So the versions should be the same to my understanding.
Has anyone encountered a similar issue?