blob: 46b94d42ca59a04b0d526f85a2f3ede9bc6fb35a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Copyright 2006 Nanorex, Inc. See LICENSE file for details.
__author__ = "Will"
import sys, os, Pyrex
def find_pyrexc():
if sys.platform == 'darwin':
# MacOS
x = os.path.dirname(Pyrex.__file__).split('/')
y = '/'.join(x[:-4] + ['bin', 'pyrexc'])
if os.path.exists(y):
return y
elif os.path.exists('/usr/local/bin/pyrexc'):
return '/usr/local/bin/pyrexc'
raise Exception('cannot find Mac pyrexc')
elif sys.platform == 'linux2':
if os.path.exists('/usr/bin/pyrexc'):
return '/usr/bin/pyrexc'
if os.path.exists('/usr/local/bin/pyrexc'):
return '/usr/local/bin/pyrexc'
raise Exception('cannot find Linux pyrexc')
else:
# windows
return 'python c:/Python' + sys.version[:3] + '/Scripts/pyrexc.py'
|