B Furtado
B Furtado

Reputation: 1500

How to setup python to use at Terminal in PyCharm

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

Answers (1)

phev8
phev8

Reputation: 3773

You have to set up the path to the correct python binaries, when you add the remote interpreter in PyCharm:

enter image description here

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

Related Questions