2012-06-14 45 views
1

我试图安装SBT2并具有以下设置Sublimetext2安装10.7.4

OS

的Mac OS X 10.7

tbc:~ mystic$ which python 
/Library/Frameworks/Python.framework/Versions/2.7/bin/python 
tbc:~ mystic$ python -V 
Python 2.7.2 

我下载的DMG从SBT2网站安装并安装,但在打开SBT2应用程序后出现错误

Unable to run package setup: 

Failed to load module 

Traceback (most recent call last): 
    File "./PackageSetup.py", line 7, in <module> 
    import zipfile 
    File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/zipfile.py", line 4, in <module> 
    import struct, os, time, sys, shutil 
    File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/struct.py", line 1, in <module> 
    from _struct import * 
ImportError: No module named _struct 

更重要的是我想根据sublimetext2论坛帮助

tbc:~ mystic$ ls -la /Library/Frameworks/Python.framework/Versions 
total 8 
drwxr-xr-x 5 root admin 170 Jun 12 2011 . 
drwxr-xr-x 6 root admin 204 Jun 12 2011 .. 
drwxrwxr-x 11 root admin 374 Jun 12 2011 2.7 
drwxrwxr-x 10 root admin 340 Jun 9 2011 3.0 
lrwxr-xr-x 1 root admin 3 Sep 25 2011 Current -> 2.7 
tbc:~ mystic$ cd /Library/Frameworks/Python.framework/Versions 
tbc:Versions mystic$ sudo rm Current 
Password: 
tbc:Versions mystic$ sudo ln -s /Library/Frameworks/Python.framework/Versions/2.7 Current 

正如我有Python2.7作为其默认的我不知道为什么SBT2会后python2.6的

它不应该是这个我知道这很复杂,但是没有想法让它工作。

任何帮助和建议表示赞赏!

回答

0

我遇到同样的问题。花了很多时间来挖掘它的配置文件或plist后,我什么也没有得到。

然后我找到了一些提示,以欺骗崇高文字2使用Python 2.7,而不是2.6

cd /Library/Frameworks/Python.framework/Versions/ 
sudo mv 2.6 2.6-backup 
sudo ln -s 2.7 2.6 

这对我的作品。

+0

让我们看看这是否适合我!感谢您的更新! – thchand

+0

运气好吗?任何问题,让我知道。 – chenyi1976

+0

ln -s 2.7 2.6权限被拒绝 – thchand

相关问题