0

I have python 2.7.11 installed on El Capitan, and works fine, as shown below:

enter image description here

But in Spyder, the console connects to an older version of python, 2.7.10, and does not load any modules I installed through the new "pip", as shown below:

enter image description here

How can I connect Spyder to the newer version of Python and then delete the older version of Python from my computer?

Thank you!

TPWang
  • 1,322
  • 4
  • 20
  • 39

1 Answers1

1

Install Spyder normally. Then change the Python Interpreter being used as described in this answer: How to change the path of Python in Spyder?

Community
  • 1
  • 1
masnun
  • 11,635
  • 4
  • 39
  • 50
  • But the console couldn't be loaded, says: Either: Your IPython frontend and kernel versions are incompatible or You don't have IPython installed in your external interpreter. – TPWang Jan 03 '16 at 23:23
  • You can install IPython in the Python version you used. That should work. – masnun Jan 04 '16 at 07:38
  • 1
    @AbuAshrafMasnun is right, you need to install `qtconsole` in your external interpreter to have IPython consoles working on it. – Carlos Cordoba Jan 06 '16 at 21:55