I have recently downloaded and installed Anjuta as a tool for Python development. I am developing in Python 3.2.3, on an Ubuntu 12.04 platform.
Following the 'Create a new project' advice on the Gnome Dev Center website I started to follow the instructions, but quickly realized that the project was using Python 2.7 (the system default).
I found a Python option under 'Edit Preferences', but changing the path to point to my required version of Python does not seem to have the desired effect. Now, every time I open Anjuta, there is a message about mis-configured paths.
I cannot find any information on the web about this.
Does anyone have any experience of setting up Anjuta for Python3? Please help!
Does the error message mention python-rope by any chance? If so, the error could be related to this library instead of python per se.. I'm on Ubuntu 12.04 and recently installed Anjuta & python3 and found a similar problem myself. I traced the error to the python-rope lib Anjuta uses for autocompletion. I have python-rope installed from the Ubuntu repos, but the installed version only works for python2, so I had to manually install the python3 port from here, and installed it with 'sudo python3 setup.py install' (inside the lib dir of course). After that Anjuta stopped complaining.
Hope this helps.