Reputation: 1500
I am running PyCharm on a server without administrative acess. The server has Python 2.7 installed.
I am using Anaconda3 Python 3.5.3 when running programs and in the Console. However, I cannot find where to set the Terminal of PyCharm to the same Python (Anaconda3/Python 3.5.3)
It keeps using the 2.7 and I cannot delete it from the server. Thanks.
Appreciate the help.
Upvotes: 0
Views: 893
Reputation: 3773
You have to set up the path to the correct python binaries, when you add the remote interpreter in PyCharm:
Write there the path to your anaconda installation. So in your case the Python interpreter path is something like: /your_install_path/anaconda/bin/python3
Upvotes: 1