GaoYuan
GaoYuan

Reputation: 153

I installed the python3.3.2 in my PC, ubuntu12.04. And the eric IDE

For that the ubuntu itself installed the python2.7.3. So after I set up the eric, the default IDE is stil python 2.7.3. But I have installed python 3.3.2. How to re-set this for eric? because I want to use the python 3.3.2. Thanks.

Upvotes: 1

Views: 322

Answers (1)

mrda
mrda

Reputation: 26

Looking at http://eric-ide.python-projects.org/ it appears that:

  • eric 4 is targeting python2
  • eric 5 is targeting python3

And then looking at http://packages.ubuntu.com/search?keywords=eric you'll see that eric, as packaged for Ubuntu, is only version 4 - meaning you've got one choice if you want to use eric right now:

  • Compile eric 5 from source so you can do some python 3 programming, or
  • Stay with eric 4 and python 2, if you feel more comfortable with precompiled packages.

Upvotes: 1

Related Questions