For anyone with the same problem, it took me a while to find a solution in the new PyCharm 5 installation.
The problem is that you need to change the default interpreter that PyCharm 5 brings (default is 2.6). It is different from your python version system and IDE.
Windows or Linux File -> Settings -> Project Interpreter
Mac PyCharm β Settings β Project Interpreter
Select python -version and then you can install all the modules you need with
pip install ModuleName
I recommend also adding all the PATH
Settings β Tools β Terminal β Shell Path : echo $ PATH
Karel MuΓ±iz Perdomo
source share