This is the directory of my project interpreter:
~/PycharmProjects/pythonProject/venv/bin/python
However, when I want to install packages using "pip" in the terminal, it seems that packages are installed somewhere else. This is how I installed them:
pip3 install six
This is the result:
Requirement already satisfied: six>=1.5 in /Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages (from python-dateutil>=2.7.3->pandas) (1.16.0)
How can I fix this?