diff options
author | mjdenkowski <michael.j.denkowski@gmail.com> | 2013-09-11 16:20:36 -0400 |
---|---|---|
committer | mjdenkowski <michael.j.denkowski@gmail.com> | 2013-09-11 16:20:36 -0400 |
commit | 8b429e08566ffc640c2de0f0eca66c354c8377f9 (patch) | |
tree | 060f9dec9743ab8ff71c643c7aa136026735be51 /realtime/rt/__init__.py | |
parent | 84e0f04f9c3a156aa9292c6d6dedbbd94b13bd1a (diff) |
Find pycdec
Diffstat (limited to 'realtime/rt/__init__.py')
-rw-r--r-- | realtime/rt/__init__.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/realtime/rt/__init__.py b/realtime/rt/__init__.py index 738777f3..fbde8f4d 100644 --- a/realtime/rt/__init__.py +++ b/realtime/rt/__init__.py @@ -1,3 +1,18 @@ +# Add pycdec to the Python path if user hasn't +import os +import sys +try: + import cdec +except ImportError as ie: + try: + pycdec = os.path.join(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))), 'python') + sys.path.append(pycdec) + import cdec + except: + sys.stderr.write('Error: cannot import pycdec. Please check the cdec/python is built.\n') + raise ie + +# Regular init imports from rt import * import aligner import decoder |