树莓派pip install openvino-dev 出现error: subprocess-exited-with-error

发现是安装editdistance包时出现错误
直接去pypi官网下载pip安装包提示 is not a supported wheel on this platform.

解决方法:去网上下载源码

editdistance-0.6.2源码包

解压安装
tar -zxf 压缩包名

进入editdistance-0.6.2安装

sudo python setup.py install
安装时可能会出现 ValueError: ‘editdistance/bycython.pyx’ doesn’t match any files

添加editdistance/bycython.pyx文件

# distutils: language = c++
# distutils: sources = editdistance/_editdistance.cpp

from libc.stdlib cimport malloc, free
# from libc.stdint cimport int64_t

cdef extern from "./_editdistance.h":
    ctypedef int int64_t
    unsigned int edit_distance(const int64_t *a, const unsigned int asize, const int64_t *b, const unsigned int bsize)

cpdef unsigned int eval(object a, object b) except 0xffffffffffffffff:
    cdef unsigned int i, dist
    cdef int64_t *al = <int64_t *>malloc(len(a) * sizeof(int64_t))
    for i in range(len(a)):
        al[i] = hash(a[i])
    cdef int64_t *bl = <int64_t *>malloc(len(b) * sizeof(int64_t))
    for i in range(len(b)):
        bl[i] = hash(b[i])
    dist = edit_distance(al, len(a), bl, len(b))
    free(al)
    free(bl)
    return dist

你可能感兴趣的:(小问题集中营,pip)