Skip to content

Commit

Permalink
Check for pyopengl-accelerate and info on BlueSky run without it
Browse files Browse the repository at this point in the history
  • Loading branch information
Jules-7 committed Sep 26, 2019
1 parent 9840646 commit ce29fcb
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
9 changes: 9 additions & 0 deletions check.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,15 @@ def initializeGL(self):
print('[FAIL]')
print('Could not determine GL version')

print("Checking for pyopengl-accelerate", end=' ')
try:
import OpenGL_accelerate
except ImportError:
print("[FAIL]")
else:
print('[OK]')


print("Checking for pygame ", end=' ')
try:
import pygame
Expand Down
5 changes: 3 additions & 2 deletions setup-python.errors.then.readme.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
Windows 10 users:
If you get errors installing pyopengl-accelerate, this is due to a problem
with Microsofts Build tools and Python 3.7.
The best solution for now is to step back to python 3.6.
Hopefully this will soon be fixed by the pyopengl-accelerate developer
Hopefully this will soon be fixed by the pyopengl-accelerate developer.
You could step back to Python 3.6 (to use pyopengl-accelerate)
or run BlueSky with Python 3.7 (without pyopengl-accelerate).

0 comments on commit ce29fcb

Please sign in to comment.