Trouble importing module using swig and python
Basha J P M
mailtobas_2004 at hotmail.com
Sat Oct 11 02:44:59 EDT 2008
I am beginner in python.
I am working through the tutorial examples from http://www.swig.org/ and
have run into some problems. I took the following command instructions from
the tutorial on swig.org:
http://www.swig.org/tutorial.html
I have written example.c and example.i as described in the above tutorial.
My first attempt at compiling the libraries was this:
$ swig -python example.i
it should produce example.py and example_wrap.c files . But i am not getting
example.py file in the folder where i am executing swig -python example.i
But with example_wrap.c file i can able to produce _example.so shared object
like
gcc -c example.c example_wrap.c \
-I/vobs/tsp/tools/PYTHON/include/python2.5
gcc -shared example.o example_wrap.o -o _example.so
and doing
ld -shared example.o example_wrap.o -o _example.so
and when iam trying to import from python like
import example
it is saying no module named example.
My first Question is that should i get example.py in folder and second
Question is that if it is not neccessary then where i am going wrong ??
Please help me in this regard.
regards,
basha.
--
View this message in context: http://www.nabble.com/Trouble-importing-module-using-swig-and-python-tp19930052p19930052.html
Sent from the Python - python-list mailing list archive at Nabble.com.
More information about the Python-list
mailing list