The SDK seems invalid error
Hi there !
Here's my problem. I'm on windows with a map drive pointing on an Ubuntu server (X:/). I'm trying to work with PyCharm (on Windows) on the Linux server. The connexion is O.K for modifying the files.
The problem comes when I try to change the Python Interpreter in PyCharm for the one of my Virtual-Env (on the Linux server). I always get the error:
Cannot set up a python SDK
at: X:\public_html\project\virtual-env\bin\python2.7.
The SDK seems invalid.
Does anybody have an idea about this ? I'm am trying to do somethin impossible here ? I am doing it wrong ?
请先登录再写评论。
Hello yann,
PyCharm needs to be able to run the Python interpreter that you have specified.
Obviously it is not possible to run a Linux binary on a Windows machine.
You should configure a similar virtualenv on your Windows machine and use
that for the development.
--
Dmitry Jemerov
Development Lead
JetBrains, Inc.
http://www.jetbrains.com/
"Develop with Pleasure!"
Thanks for the quick answer ! It makes sense. I didn't see it this way.