AttributeError: module 'tldextract' has no attribute 'cache_file_locatio n'
时间: 2023-07-23 22:42:20 浏览: 258
求解报错:AttributeError:module ‘os’ has no attribute ‘exit’
很抱歉,可能是因为`tldextract`的版本问题导致了该函数不存在。您可以尝试使用以下代码获取缓存文件夹的位置:
```python
import os
import tldextract
cache_dir = os.path.join(tldextract.extract("").suffix, "tld_set")
print(os.path.join(tldextract.TLD_CACHE_DIR, cache_dir))
```
这将输出`tldextract`缓存文件夹的位置。您可以在文件浏览器中前往该路径,删除其中所有文件,最后重新运行程序。如果问题仍然存在,请尝试升级`pip`和`tldextract`,并重新运行程序。
阅读全文