Re: Strange interaction between py-pyglet and py-numpy

2018-11-26 Thread Steve Kargl
On Mon, Nov 26, 2018 at 07:33:12PM -0500, Diane Bruce wrote: > On Mon, Nov 26, 2018 at 11:59:36PM +, Montgomery-Smith, Stephen wrote: > > > > Original error was: /lib/libgcc_s.so.1: version GCC_4.8.0 required by > > /usr/local/lib/gcc7/libgfortran.so.4 not found > > > > > > Any ideas? > >

Re: Strange interaction between py-pyglet and py-numpy

2018-11-26 Thread Diane Bruce
On Mon, Nov 26, 2018 at 11:59:36PM +, Montgomery-Smith, Stephen wrote: > Using python2.7, if I run this code: > > import numpy as np > from pyglet.gl import * > > everything works fine. But if I put the same code in the other order: > > from pyglet.gl import * > import numpy as np > > I

Strange interaction between py-pyglet and py-numpy

2018-11-26 Thread Montgomery-Smith, Stephen
Using python2.7, if I run this code: import numpy as np from pyglet.gl import * everything works fine. But if I put the same code in the other order: from pyglet.gl import * import numpy as np I get: Traceback (most recent call last): File "", line 1, in File