“pip3 install cython”之后在 Ubuntu 22.04 上找不到 cythonize

问题描述 投票:0回答:2
Command: cythonize rednose/helpers/ekf_sym_pyx.pyx
Error: sh: 1: cythonize: not found

我最近安装了 Ubuntu 22.04。我正在尝试安装

https://github.com/commaai/rednose

几天前,在使用 Ubuntu 18.04 时,我遇到了同样的问题,我使用

pip3 install cython
解决了它。

在 Ubuntu 22.04 上,解决方法不同。安装

cythonize
命令的正确方法是什么?

python ubuntu pip cython cythonize
2个回答
3
投票

在 22.04 的 Jammy 存储库中,cython 已命名为 cython3。所以安装它

sudo apt update && sudo apt install cython3


0
投票

pip 安装 cython==0.29.37 后 问题解决了。

© www.soinside.com 2019 - 2024. All rights reserved.