Status: New
Owner: ----
Labels: Type-Defect Priority-Medium
New issue 21 by
thibault...@gmail.com: missing __init__.py in text/ +
dependency
http://code.google.com/p/glumpy/issues/detail?id=21
What steps will reproduce the problem?
0. Download and install glumpy from git.
1. import glumpy
----> 1 import numpy, glumpy
/usr/lib/python2.7/site-packages/glumpy/__init__.py in <module>()
37 from trackball import Trackball
38 from graphics import VertexBuffer
---> 39 from text import Label
40
41 from version import version as __version__
ImportError: No module named text
2. Try and add __init__.py with:
from label import Label
Gives:
/usr/lib/python2.7/site-packages/glumpy/text/font.py in <module>()
31 import os
32 import numpy as np
---> 33 from freetype import *
34 from glumpy.text.atlas import Atlas
35 from glumpy.text.glyph import Glyph
ImportError: No module named freetype
Is there a new dependency on freetype-py ?
Thanks!