I've been there. All the code is in C/C++, don't I need it in python?
I will explore the software. I dismissed this because there was no
python. I am knew to all of this. Thanks for your reply.
I've been there. All the code is in C/C++, don't I need it in python?
I will explore the software. I dismissed this because there was no
python. I am knew to all of this. Thanks for your reply.
matplotlib has extension modules that wrap the C library. You will need to
install libfreetype, then build matplotlib.
--
Robert Kern
"I have come to believe that the whole world is an enigma, a harmless enigma
that is made terrible by our own mad attempt to interpret it as though it had
an underlying truth."
-- Umberto Eco
I've been there. All the code is in C/C++, don't I need it in python?
I will explore the software. I dismissed this because there was no
python. I am knew to all of this. Thanks for your reply.
The c stuff (freetype) is what you need (it gets installed as a
library that can be used by python or any other software entity that
needs its functionality). It may seem a little weird, but lots of
the stuff you call from python is written in c. More than likely,
your python interpreter is also written in c :-)
>I've been there. All the code is in C/C++, don't I need it in python?
>I will explore the software. I dismissed this because there was no
>python. I am knew to all of this. Thanks for your reply.
>
The c stuff (freetype) is what you need (it gets installed as a
library that can be used by python or any other software entity that
needs its functionality). It may seem a little weird, but lots of
the stuff you call from python is written in c. More than likely,
your python interpreter is also written in c :-)
>
>
Alternatively use the Python Imaging Library (PIL), which I believe
includes freetype support.
regards
Steve
--
Steve Holden +1 571 484 6266 +1 800 494 3119
Holden Web LLC/Ltd http://www.holdenweb.com
Skype: holdenweb http://del.icio.us/steve.holden
------------------ Asciimercial ---------------------
Get on the web: Blog, lens and tag your way to fame!!
holdenweb.blogs pot.com squidoo.com/pythonology
tagged items: del.icio.us/steve.holden/python
All these services currently offer free registration!
-------------- Thank You for Reading ----------------
>I've been there. All the code is in C/C++, don't I need it in python?
>I will explore the software. I dismissed this because there was no
>python. I am knew to all of this. Thanks for your reply.
>
The c stuff (freetype) is what you need (it gets installed as a
library that can be used by python or any other software entity that
needs its functionality). It may seem a little weird, but lots of
the stuff you call from python is written in c. More than likely,
your python interpreter is also written in c :-)
>
>
Alternatively use the Python Imaging Library (PIL), which I believe
includes freetype support.
regards
Steve
--
Steve Holden +1 571 484 6266 +1 800 494 3119
Holden Web LLC/Ltd http://www.holdenweb.com
Skype: holdenweb http://del.icio.us/steve.holden
------------------ Asciimercial ---------------------
Get on the web: Blog, lens and tag your way to fame!!
holdenweb.blogs pot.com squidoo.com/pythonology
tagged items: del.icio.us/steve.holden/python
All these services currently offer free registration!
-------------- Thank You for Reading ----------------
Alternatively use the Python Imaging Library (PIL), which I believe
includes freetype support.
The OP seems to be trying to build matplotlib, which actually does require the
FreeType library. The PIL, lovely though it is, is not a substitute.
--
Robert Kern
"I have come to believe that the whole world is an enigma, a harmless enigma
that is made terrible by our own mad attempt to interpret it as though it had
an underlying truth."
-- Umberto Eco
Comment