AttributeError: module 'warnings' has no attribute 'filterswarnings'
AttributeError: module 'warnings' has no attribute 'filterswarnings'
代码开头导入了'warning'库,相关代码如下:
import warnings
warnings.filterswarnings('ignore')
当我运行代码时,出现错误
AttributeError: module 'warnings' has no attribute 'filterswarnings'
后来我选择pip install warnings
克服这个问题,然后就出现了
ERROR: Could not find a version that satisfies the requirement warnings (from versions: none)
ERROR: No matching distribution found for warnings
现在,我还没有克服这个问题。我该如何克服这个问题?
很简单。 filterswarnings
无效。正如您在 docs 中看到的,filterwarnings
是正确的形式。
你需要的是
warnings.filterwarnings('ignore')
另外 pip install warnings
也行不通。因为 warnings
是内置库。您不能使用 pip
.
安装内置库
代码开头导入了'warning'库,相关代码如下:
import warnings
warnings.filterswarnings('ignore')
当我运行代码时,出现错误
AttributeError: module 'warnings' has no attribute 'filterswarnings'
后来我选择pip install warnings
克服这个问题,然后就出现了
ERROR: Could not find a version that satisfies the requirement warnings (from versions: none)
ERROR: No matching distribution found for warnings
现在,我还没有克服这个问题。我该如何克服这个问题?
很简单。 filterswarnings
无效。正如您在 docs 中看到的,filterwarnings
是正确的形式。
你需要的是
warnings.filterwarnings('ignore')
另外 pip install warnings
也行不通。因为 warnings
是内置库。您不能使用 pip
.