首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >问答首页 >Cython found..Please在buildozer中安装错误

Cython found..Please在buildozer中安装错误
EN

Stack Overflow用户
提问于 2021-04-06 17:40:07
回答 2查看 8.2K关注 0票数 6

我试图在Linux中从推土机中创建一个apk文件,但是每次我收到这个错误都找不到cython。虽然我试着安装它,但我找到了整个互联网,但没有得到answer.Please的帮助。我是个初学者

守则:

代码语言:javascript
运行
复制
(kali㉿kali)-[~/Desktop/KivyApp]
└─$ buildozer android debug                                                               1 ⨯
# Check configuration tokens
# Ensure build layout
# Check configuration tokens
# Read available permissions from api-versions.xml
# Preparing build
# Check requirements for android
# Run 'dpkg --version'
# Cwd None
Debian 'dpkg' package management program version 1.20.7.1 (amd64).
This is free software; see the GNU General Public License version 2 or
later for copying conditions. There is NO warranty.
# Search for Git (git)
#  -> found at /usr/bin/git
# Search for Cython (cython)
# Cython (cython) not found, please install it.
                                                                                              
┌──(kali㉿kali)-[~/Desktop/KivyApp]
└─$ sudo pip uninstall cython              1 ⨯
Found existing installation: Cython 0.29.21
ERROR: Cannot uninstall 'Cython'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.        
                                               
┌──(kali㉿kali)-[~/Desktop/KivyApp]
└─$ sudo apt-get install Cython          100 ⨯
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
E: Unable to locate package Cython
                                                    
┌──(kali㉿kali)-[~/Desktop/KivyApp]
└─$ sudo apt-get install cython          100 ⨯
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Package cython is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'cython' has no installation candidate
                                               
┌──(kali㉿kali)-[~/Desktop/KivyApp]
└─$ sudo pip uninstall cython            100 ⨯
Found existing installation: Cython 0.29.21
ERROR: Cannot uninstall 'Cython'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.        
EN

回答 2

Stack Overflow用户

回答已采纳

发布于 2021-04-09 14:45:47

这是因为buildozer搜索cython,但是实际的命令是cython3。要解决这个问题,您必须创建一个cython命令,将所有参数传递给cython3。

写在终端上

代码语言:javascript
运行
复制
cd /bin/ && sudo gedit cython

在会弹出的编辑器中写

代码语言:javascript
运行
复制
cython3 $@

这将把所有参数从cython传递到cython3。保存文件并写入终端

代码语言:javascript
运行
复制
sudo chmod 755 cython

让它可执行。要测试它,只需编写

代码语言:javascript
运行
复制
cython

它的输出应该与

代码语言:javascript
运行
复制
cython3
票数 6
EN

Stack Overflow用户

发布于 2021-11-01 07:39:59

更安全、更简单的方法(因此避免转义参数等方面的问题),就是创建一个软链接。

代码语言:javascript
运行
复制
sudo ln -s /usr/bin/cython3 /usr/local/bin/cython    
票数 2
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/66973759

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档