2

运行本地开发服务器时收到以下错误消息:

bad runtime process port ['']

Traceback (most recent call last):
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site.py", line 565, in <module>
    main()
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site.py", line 547, in main
    known_paths = addusersitepackages(known_paths)
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site.py", line 278, in addusersitepackages
    user_site = getusersitepackages()
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site.py", line 253, in getusersitepackages
    user_base = getuserbase() # this will also set USER_BASE
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site.py", line 242, in getuserbase
    from sysconfig import get_config_var
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/sysconfig.py", line 104, in <module>
    _PROJECT_BASE = os.path.dirname(_safe_realpath(sys.executable))
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/sysconfig.py", line 99, in _safe_realpath
    return realpath(path)
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/posixpath.py", line 366, in realpath
    if islink(component):
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/posixpath.py", line 136, in islink
    return stat.S_ISLNK(st.st_mode)
AttributeError: 'module' object has no attribute 'S_ISLNK'

我试图恢复几天并在众所周知的工作状态下运行该项目,我得到了同样的错误。上传到谷歌没问题。其他项目在本地工作。我使用 1.8.1 SDK。

4

2 回答 2

3

我在当地也有类似的问题。我解决了删除所有文件 .pyc 并重新加载页面。

于 2013-10-24T02:05:21.423 回答
0

好的,发现错误了。我应该更仔细地阅读错误消息。它声明模块没有属性。那是因为名称冲突。我有一个名为 stat 的文件。不知何故,即使我恢复了项目,文件仍然存在,不知道为什么。

刚刚重命名文件,现在一切正常。

于 2013-06-13T14:11:00.223 回答