2015-06-20 140 views
0

我想編譯這個,完美的工作,計劃用buildozer: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 
+0

什麼是隨機? –

+0

一個python構建模塊 – Gilgamesch

回答

1

隨機和webbrowser是內置模塊,您不應將它們包括在需求行中。此行僅適用於將使用pip安裝的外部事物,或僅針對編譯後的組件使用特殊配方的內部/外部事物。

相關問題