0

I've come to run my app in development locally this morning, in the Google App Engine Launcher for Windows. Up until yesterday this has been working fine, and the code hasn't been changed since then.

Now, when I try to run the app on localhost I get the yellow warning sign in the Launcher and the log shows the following;

2012-08-02 08:37:54 Running command: "['C:\\Python27\\pythonw.exe', 'C:\\Program Files\\Google\\google_appengine\\dev_appserver.py', '--admin_console_server=', '--port=8080', 'C:\\Documents and Settings\\preston\\My Documents\\Google Drive\\Development\\Instance']"
Traceback (most recent call last):
  File "C:\Program Files\Google\google_appengine\dev_appserver.py", line 133, in <module>
    run_file(__file__, globals())
  File "C:\Program Files\Google\google_appengine\dev_appserver.py", line 129, in run_file
    execfile(script_path, globals_)
  File "C:\Program Files\Google\google_appengine\google\appengine\tools\dev_appserver_main.py", line 157, in <module>
    from google.appengine.tools import appcfg
  File "C:\Program Files\Google\google_appengine\google\appengine\tools\appcfg.py", line 41, in <module>
    import mimetypes
  File "C:\Python27\lib\mimetypes.py", line 29, in <module>
    import urllib
  File "C:\Python27\lib\urllib.py", line 26, in <module>
    import socket
  File "C:\Python27\lib\socket.py", line 47, in <module>
    import _socket
ImportError: Module use of python26.dll conflicts with this version of Python.
2012-08-02 08:37:55 (Process exited with code 1)

I've only ever had Python 2.7 installed on this machine, nothing has ever attempted to use python26.dll before as far as I know...

Also, I've checked the Launcher for updates, nothing found. Has anybody experienced this before? The most baffling thing to me is that it's changed behaviour since yesterday...

4

1 回答 1

2

已解决:根据评论者的提示,我尝试关闭自上次成功运行以来已安装的所有正在运行的应用程序。这只有一个;谷歌云端硬盘。停止该进程允许 App Engine Launcher 正常运行应用程序,因此冲突来自两个 Google 应用程序!

谢谢您的帮助。

于 2012-08-02T08:02:25.673 回答