I've been trying to set a virtual environment for some time now, but with no success. I read many topics regarding this manner, but couldn't find a solution for my problem.
I am running:
Windows 7
Pycharm Community Edition 2017.1.4
Anaconda 2
Python 2.7.13
I am trying to set up an environment of Python 3.5.3 - Anaconda I used this command:
conda create -n py35 python=3.5 anaconda
(also tried : conda create -n py35 python=3.5.3 anaconda) same result
via PyCharm terminal. It does seem that it sets up an environment and I am able to switch between them in the terminal, but when I try to add it as a local Interpreter I keep receiving a message:
Cannot set up a python SDK at Python 3.5.3 (C:\Users\Cossack\Anaconda2\envs\py35\python.exe) (C:\Users\Cossack\Anaconda2\envs\py35\python.exe). The SDK seems invalid.
I also tried creating conda Env via PyCharm settings, but same error appears. I tried creating environment for python 3.6 just to see if that was the problem source, but again, the same error appeared.
I really need both Python 2.7 and 3.5, but I keep getting errors which I have no Idea on how to solve.
Thank you very much in advance, hope that someone can help me in solving this issue.