
python
DONGHUIB
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Could not build wheels for scipy which use PEP 517错误处理
安装scipy的错误 Could not build wheels for scipy which use PEP 517 我的处理方法 编译安装 pybind11 https://github.com/pybind/pybind11原创 2020-02-15 11:19:45 · 17061 阅读 · 3 评论 -
liblapack.so.3: undefined symbol: icamin_k错误及解决办法
OpenCV编译完成后,测试出现lapack错误 Python 3.7.1 | packaged by conda-forge | (default, Feb 18 2019, 01:34:39) [GCC 7.3.0] :: Anaconda, Inc. on linux Type "help", "copyright", "credits" or "license" for mor...原创 2019-10-25 11:27:48 · 1049 阅读 · 0 评论 -
《推荐系统实践》用户协同过滤userCF测试代码
# -*- coding=utf-8 -*- import math from operator import itemgetter dic={'A':('a','b','d'),'B':('a','c'),'C':('b','e'),'D':('c','d','e')} def Usersim(dicc): N=dict() item_user=di...原创 2019-01-21 14:24:58 · 348 阅读 · 0 评论 -
opencv 调用error
python调用动态库error Linux 下 python3 调用 c++ 编译的动态库时,报undefined symbol: _ZN2cv6imshowERKNS_6StringERKNS_11_InputArrayE 原因: opencv cmake编译时未指定正确的python 版本和路径,需要指定python3相关的参数: cmake -D...原创 2019-07-28 00:34:56 · 440 阅读 · 0 评论