错误bug
vcfriend
这个作者很懒,什么都没留下…
展开
-
ModuleNotFoundError: No module named ‘zmq.backend.cython.constants‘
更新了pyzmq包,代码运行报报错,修改出错代码from zmq.backend.cython.constants import NOBLOCK修改为:from zmq import NOBLOCK正常运行,问题解决.原创 2022-09-03 04:33:37 · 780 阅读 · 1 评论 -
python No module named numpy. distutils._msvccompiler in numpy. distutils; trying from distutils
在cmd 中输入 python setup.py install报错:No module named numpy. distutils._msvccompiler in numpy. distutils; trying from distutils、解决方法:安装Visual Studio 2019 生成工具 选择安装c++生成工具 (根据python版本选择)参考文章:https://wiki.python.org/moin/WindowsCompilers——————...原创 2021-11-10 15:55:15 · 4997 阅读 · 0 评论 -
解决 IllegalArgumentException: Could not resolve placeholder in string value "${XXXXXX}"
转载: https://www.cnblogs.com/davidgu/p/6413576.html如题:导致这一问题的原因:使用了重复的property-placeholder如一个配置文件中使用了<context:property-placeholder location="classpath:aa.properties" />而另一处使用了<bean id="propert...转载 2018-03-23 11:49:07 · 1499 阅读 · 0 评论