我现在无法在项目中导入`commands'

时间:2019-04-30 04:14:11

标签: python

在我的项目中,我想导入命令,因此将以下代码放入我的项目中:

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.

2 个答案:

答案 0 :(得分:1)

从文档中:

  

自2.6版起弃用:命令模块已在中删除   Python3。改为使用子流程模块。

您可以点击以下链接: https://docs.python.org/2/library/commands.html

答案 1 :(得分:0)

commands模块已在python3中删除,您可以检查there

  

从2.6版开始不推荐使用:Python 3中已删除了命令模块。请改为使用 subprocess 模块。