在我的项目中,我想导入命令,因此将以下代码放入我的项目中:
import commands
但是在那里我得到了错误:
No module named commands less... (⌘F1)
This inspection detects names that should resolve but don't. Due to dynamic dispatch and duck typing, this is possible in a limited but useful number of cases. Top-level and class-level items are supported better than instance items.
答案 0 :(得分:1)
从文档中:
自2.6版起弃用:命令模块已在中删除 Python3。改为使用子流程模块。
答案 1 :(得分:0)
commands
模块已在python3中删除,您可以检查there:
从2.6版开始不推荐使用:Python 3中已删除了命令模块。请改为使用 subprocess 模块。