Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的问题是当我尝试在新窗口中导入usb.core或usb仅usb.util在 shell 窗口之外时。当我点击运行时,在外壳窗口上它说
usb.core
usb
usb.util
"ImportError: No module named core".
但是当我在 shell 窗口或 python 命令行中导入usb时,它工作正常!!
您的 PYTHONPATH 在 shell 中的设置与在目标窗口中的设置不同。
运行此代码以确保:
import sys print sys.path
在两个平台上进行比较。