i tried to install clang and ( as expected ) it came with the warning that it can't import ctypes. Pointing to the workaround (http://sublimetext.userecho.com/topic/8 ... -in-linux/).
the first step in there is:
Go to the python console and type "import ctypes" in build 2139 and you'll get:
>>> import ctypes
Traceback (most recent call last):
File "<string>", line 1, in <module>
File ".\ctypes\__init__.py", line 10, in <module>
ImportError: No module named _ctypes
But on my machine the system wide python behavies differently:
- Code: Select all
which python
/usr/bin/python
[az@server src]$ python
Python 2.6.6 (r266:84292, Jun 18 2012, 09:57:52)
[GCC 4.4.6 20110731 (Red Hat 4.4.6-3)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import ctypes
>>>
It is my understanding the Editor has a problem with python.
Question:
how do i make the use of system installed python?
Thank you
Andrew