On Friday 04 August 2006 15:40, Chris Mohler wrote:
After that, the setup.py install seemed to go OK, but I'm probably still missing something, as I can't see the plugin in Gimp. Where does it show up when I get it right?
If the .py file is in $HOME/.gimp-2.2/plug-ins and it's executable, it should appear in the Python-Fu menu (at least it does for me): Python-Fu -> Selection -> Transparency Crop
It isn't there.
After the setup, the instructions say that it should be tested by
'execute in Python
import scipy scipy.test(level=1)'
Can you please explain the 'execute in Python'?
In a terminal, type: python And press enter. You should get some info about your version of Python and be left with a prompt that looks like:
Next, type: import scipy and press enter - if it throws an error there, scipy is not fully installed.
Sorry about all the questions. This is new ground for me.
I learned by asking questions....
Thanks for the patient instructions.
python Python 2.4.3 (#1, Jun 13 2006, 16:41:18) [GCC 4.0.2 20051125 (Red Hat 4.0.2-8)] on linux2 Type "help", "copyright", "credits" or "license" for more information.
import scipy
Traceback (most recent call last): File "<stdin>", line 1, in ? ImportError: No module named scipy
I tried 'yum install scipy*' in case I needed additional packages, but just got 'nothing to do'. I wonder if the order of installing the packages is important. Perhaps I should remove scipy then re-install it?
Anne