Twisted中的twistd无法在窗口中运行

发布于 2024-09-13 12:28:03 字数 1047 浏览 7 评论 0原文

在命令提示符下,我输入>>twistd echobot.tac,

Traceback (most recent call last):
  File "C:\Python26\Scripts\twistd.py", line 18, in ?
  from twisted.scripts.twistd import run
ImportError: No module named twisted.scripts.twistd

python时, twistd位于C:\Python26\Scripts\twistd.py

#!c:\python26\python.exe

# Copyright (c) 2001-2009 Twisted Matrix Laboratories.
# See LICENSE for details.


### Twisted Preamble
# This makes sure that users don't have to set up their environment
# specially in order to run these programs from bin/.
import sys, os, string
if string.find(os.path.abspath(sys.argv[0]), os.sep+'Twisted') != -1:
    sys.path.insert(0, os.path.normpath(os.path.join(os.path.abspath(sys.argv[0]),os.pardir, os.pardir)))
if hasattr(os, "getuid") and os.getuid() != 0:
    sys.path.insert(0, os.path.abspath(os.getcwd()))
### end of preamble


from twisted.scripts.twistd import run
run()

当我输入

from twisted.scripts.twistd import run

,它可以运行

in command prompt i type >>twistd echobot.tac

Traceback (most recent call last):
  File "C:\Python26\Scripts\twistd.py", line 18, in ?
  from twisted.scripts.twistd import run
ImportError: No module named twisted.scripts.twistd

the twistd is at C:\Python26\Scripts\twistd.py

#!c:\python26\python.exe

# Copyright (c) 2001-2009 Twisted Matrix Laboratories.
# See LICENSE for details.


### Twisted Preamble
# This makes sure that users don't have to set up their environment
# specially in order to run these programs from bin/.
import sys, os, string
if string.find(os.path.abspath(sys.argv[0]), os.sep+'Twisted') != -1:
    sys.path.insert(0, os.path.normpath(os.path.join(os.path.abspath(sys.argv[0]),os.pardir, os.pardir)))
if hasattr(os, "getuid") and os.getuid() != 0:
    sys.path.insert(0, os.path.abspath(os.getcwd()))
### end of preamble


from twisted.scripts.twistd import run
run()

when i type

from twisted.scripts.twistd import run

in python ,it can be run

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

云朵有点甜 2024-09-20 12:28:03

尝试设置路径..在cmd中类似这样:

set PYTHONPATH=%PYTHONPATH%;C:\My_python_lib   

然后运行twistd

Try setting path.. something like this in cmd:

set PYTHONPATH=%PYTHONPATH%;C:\My_python_lib   

and then run twistd

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文