buildozer无法下载webbrows

2024-10-08 18:22:26 发布

您现在位置:Python中文网/ 问答频道 /正文

我想用buildozer编译一个运行良好的程序:

import webbrowser

from kivy.app import App

class FAN(App):
    def build(self):
        webbrowser.open_new_tab('http://www.freies-aktivisten-netzwerk.de/wordpress/')

if __name__ == '__main__':
    FAN().run()

FAN().stop()`

尽管事实上,我在Buildozer中编写了需求,但它不起作用,我得到了以下错误:

Downloading/unpacking random
  Could not find any downloads that satisfy the requirement random
Cleaning up...
No distributions at all found for random
Storing debug log for failure in /home/gilgamesch/.pip/pip.log
.# Command failed: pip install --download-cache=/home/gilgamesch/.buildozer/cache --target=/home/gilgamesch/games/.buildozer/applibs random

Tags: pipfromimport程序logappcachehome

热门问题