Buildozer compilation ERROR: No matching distribution found for hostpython2 (from -r requirements.txt (line 2))
Buildozer compilation ERROR: No matching distribution found for hostpython2 (from -r requirements.txt (line 2))
我是 Kivy 的新手,正在尝试在 Ubuntu Linux 18.04 上使用 Buildozer 将一个简单的应用程序编译成 Android apk。但是,我遇到了以下错误:
ERROR: Could not find a version that satisfies the requirement hostpython2 (from -r requirements.txt (line 2)) (from versions: none)
ERROR: No matching distribution found for hostpython2 (from -r requirements.txt (line 2))
buildozer.spec 文件列出了要求:
requirements = python3,kivy,android,kivmob,hostpython2,jnius
我尝试了以下方法:
python3 -m pip install hostpython2
错误:
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://pypi.org/simple/hostpython2/
尝试升级 Buildozer:
pip3 install -U buildozer
已经是最新版本了。同样的错误仍然存在。
请帮忙解决这个问题。我无法编译apk。尝试了最后 2 天,但每一步都出现很多错误。
"hostpython2" 已弃用。将其从 buildozer.spec 文件中指定的要求中删除并改为包含 "python3",这导致 "hostpython3" 的编译。重新编译代码,成功克服了这一步。
我是 Kivy 的新手,正在尝试在 Ubuntu Linux 18.04 上使用 Buildozer 将一个简单的应用程序编译成 Android apk。但是,我遇到了以下错误:
ERROR: Could not find a version that satisfies the requirement hostpython2 (from -r requirements.txt (line 2)) (from versions: none)
ERROR: No matching distribution found for hostpython2 (from -r requirements.txt (line 2))
buildozer.spec 文件列出了要求:
requirements = python3,kivy,android,kivmob,hostpython2,jnius
我尝试了以下方法:
python3 -m pip install hostpython2
错误:
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://pypi.org/simple/hostpython2/
尝试升级 Buildozer:
pip3 install -U buildozer
已经是最新版本了。同样的错误仍然存在。
请帮忙解决这个问题。我无法编译apk。尝试了最后 2 天,但每一步都出现很多错误。
"hostpython2" 已弃用。将其从 buildozer.spec 文件中指定的要求中删除并改为包含 "python3",这导致 "hostpython3" 的编译。重新编译代码,成功克服了这一步。