Reputation: 117
I am trying to import gts package in python
When I type import gts in python I get error
No module named gts.
I have tried installing it by downloading folder and following commands:
sh autogen.sh
make
make install
But I am getting an error that:
make: *** No targets specified and no makefile found. Stop.
How do I install the GTS package
My system: Ubuntu 14.04
Upvotes: 0
Views: 292
Reputation: 61540
You have attempted to install the GTS C library. What you want to install is the Python wrapper for the GTS C Library. Do that by typing:
sudo apt-get install python-gts
in the console.
Upvotes: 0