原配置为:
PyCharm2019.1+Python3.7
1. 使用python3.7.2安装mvtec-halcon提示找不到合适版本
查看Halcon Pyhton接口使用文档,Python需要3.8版本以上
2.安装最新的Python版本
安装Python3.9,使用PyCharm切换python3.9报错‘HTMLParser‘ object has no attribute ‘unescape‘
查看官网 python3.9
的 changelog
,发现 HTMLParser.unescape
属性被移除了,并且从 python3.4
开始就被弃用。
pycharm 创建虚拟环境时,会使用到 setuptools。而 setuptools 中,刚好使用了这个属性,所以,导致了"AttributeError: 'HTMLParser' object has no attribute 'unescape'"异常。
最终解决:升级PyCharm到2021.2
踩坑:virtualenv创建虚拟环境,并在pycharm中选择已存在虚拟环境,未果。
参考:
1. Halcon20.11 Python接口使用步骤演示Halcon20.11 Python接口使用步骤演示 - 云+社区 - 腾讯云
2.pycharm 切换 python3.9 报错 ‘HTMLParser‘ object has no attribute ‘unescape‘ 解决
pycharm 切换 python3.9 报错 ‘HTMLParser‘ object has no attribute ‘unescape‘ 解决_程序员的一天-CSDN博客