Commit bb3b89df authored by Guillaume Seguin's avatar Guillaume Seguin

Detect python3.

parent c5185f17
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
from __future__ import print_function from __future__ import print_function
import os, re import os, sys, re
try: try:
import queue import queue
...@@ -31,8 +31,14 @@ try: ...@@ -31,8 +31,14 @@ try:
import wx import wx
except: except:
print(_("wxPython is not installed. This program requires wxPython to run.")) print(_("wxPython is not installed. This program requires wxPython to run."))
if sys.version_info.major >= 3:
print(_("""\
As you are currently running python3, this is most likely because wxPython is
not yet available for python3. You should try running with python2 instead."""))
sys.exit(-1)
else:
raise raise
import sys, glob, time, datetime, threading, traceback, subprocess import glob, time, datetime, threading, traceback, subprocess
from io import StringIO from io import StringIO
from printrun.pronterface_widgets import * from printrun.pronterface_widgets import *
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment