Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - parxal

#1
Revast , trying to install glfw version 3.1

C:\Python27\Scripts>pip install glfw==3.1
Downloading/unpacking glfw==3.1
  Could not find a version that satisfies the requirement glfw==3.1 (from versio
ns: 1.0.1, 1.0.2, 1.0, 1.1.0, 1.1.1)
Cleaning up...
No distributions matching the version for glfw==3.1

Any help?
#2
I'm trying to compile MIRawViewer for windows 8.1 64bit, but i'mt not a python programmer:

Want i have installed :
Python Tools for Visual Studio (https://pytools.codeplex.com/)
Anaconda (http://continuum.io/downloads) which comes with python 2.7

Opened project

Ran:
python setup.py install to compile bitunpack.c, copy it from "build\lib.win-amd64-2.7" to project root

Ran:
pib install PyOpenGL==3.0.2
pib install PyOpenGL_accelerate==3.0.2
pib install glfw==1.1.1
pib install numpy==1.9.1
pib install scandir==0.9

Downloaded "PyAudio-0.2.8-cp27-none-win_amd64.whl" from "http://www.lfd.uci.edu/~gohlke/pythonlibs/" and
pib install PyAudio-0.2.8-cp27-none-win_amd64.whl

Error on compiling :

"File "C:\Users\user.DOMAINADMINS32\Documents\mlrawviewer\glfw.py", line 49, in <module>
    raise( RuntimeError, 'GLFW library not found' )"

_base_glutInit( ctypes.byref(count), holder ) TypeError: 'NoneType' object is not callable

As sugested here ("http://stackoverflow.com/questions/10188595/pyopengl-typeerror-nonetype-object-is-not-callable")
OpenGL\DLLS folder were empty.

1) Copied freeglut 3.0 dll (http://www.transmissionzero.co.uk/software/freeglut-devel/) to windows folders

Program runs, window opens but stays white and blocked. Error:

"
Using GLUT instead of GLFW. Some features may be disabled.
Traceback (most recent call last):
  File "C:\Users\user.DOMAINADMINS32\Documents\mlrawviewer\glfw.py", line 49, in <module>
    raise( RuntimeError, 'GLFW library not found' )
  File "C:\Users\user.DOMAINADMINS32\Anaconda\lib\site-packages\OpenGL\platform\baseplatform.py", line 379, in __call__
    return self( *args, **named )
WindowsError: exception: access violation writing 0xFFFFFFFFEA441D90
"

Any help?