python3.7 AttributeError: module 'platform' has no attribute 'python_implementation'
时间: 2023-09-29 10:03:36 浏览: 343
求解报错:AttributeError:module ‘os’ has no attribute ‘exit’
这个错误是由于您使用的Python版本较低引起的。在Python 3.7之前,`platform`模块没有`python_implementation`属性。您可以尝试升级到Python 3.7或更高版本来解决此问题。如果您无法升级Python,可以尝试使用另一种方法来获取Python的实现,例如使用`sys.implementation.name`来替代`platform.python_implementation()`。
阅读全文