我试图在Linux中从推土机创建一个apk文件,但每次我收到这个错误,即找不到cython。虽然我尝试安装它,我发现整个互联网,但没有得到答案。请帮助我。我是初学者
代码:
(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.
3条答案
按热度按时间bpsygsoo1#
这是因为buildozer搜索cython,但实际的命令是cython3。为了解决这个问题,你必须创建一个cython命令,将所有参数传递给cython3。
在终端中写入
在编辑器中弹出
这将把所有参数从cython传递到cython3。保存文件并写入终端
使其可执行。要测试它,只需编写
它的输出应该与
k97glaaz2#
更安全、更简单的方法(这样你就可以避免转义参数等问题)是创建一个软链接
rkkpypqq3#
如果你不能在你的终端上安装cython,另一个解决方案是创建一个虚拟环境并在那里下载cython。激活它后,buildozer会找到它。