NSuleiman Alothman
NSuleiman Alothman

Reputation: 1

I imported these modules into Python, what would I write in the buildozer.spec requirements

I imported these modules into Python, what would I write in the buildozer.spec requirements

    import threading
    from functools import partial
    from kivy.app import App
    from kivy.uix import *
    from kivy.lang import Builder
    from kivy.core.window import Window
    from kivy.uix.screenmanager import ScreenManager , Screen
    from kivy.uix.image import Image
    from kivy.graphics.texture import Texture
    from kivy.clock import Clock
    import cv2
    import numpy as np
    import imutils
    import socket 

I dont know what would I write in the buildozer.spec requirements ?

requirements = python3,kivy # what would I write here ?

Upvotes: 0

Views: 109

Answers (1)

Сервер Чауш
Сервер Чауш

Reputation: 62

requirements = python3,kivy,opencv-python, imutils if you need a specific version write like this: requirements = python3,kivy,opencv-python==1.0,imutils

Upvotes: 1

Related Questions