我正在尝试从 Python 脚本启动一个简单的服务器:
server = Popen(['python' ,'-m', 'SimpleHTTPServer', '9090'], stderr=STDOUT, stdout=PIPE)
output = server.communicate()[0] # <- DEBUG
阅读输出,我看到:
'/usr/bin/python: Import by filename is not supported.'
有什么问题?如何解决?