I am working with KivyMD to develop a cross platform application. I have successfully been able to compile the application in Windows using pyinstaller. Now I am working on a Linux Box to compile the app for an Android device. I have followed the guides to setup buildozer requirements and completed the following.
also I install these following packages
sudo apt install cython3
sudo apt-get install autoconf
sudo apt-get install automake
sudo apt-get install g++
sudo apt-get install libtool m4 automake
sudo apt-get install lld
Then I run the command below against the spec file below and receive the error message.
It seems to be related to needing to download a file (not sure why) and not having the ssl module available... I have pyOpenSSL installed, and I read that ssl isn't compatible with my version of python so I'm really not sure how to resolve this.
[INFO]: # Installing pure Python modules
[INFO]: *** PYTHON PACKAGE / PROJECT INSTALL STAGE ***
[INFO]: The requirements (certifi, kivymd, platform, psutil, webbrowser) don't have recipes, attempting to install them with pip
[INFO]: If this fails, it may mean that the module has compiled components and needs a recipe.
[INFO]: -> directory context /home/kade/.buildozer/android/platform/build-armeabi-v7a/build
[INFO]: -> running python3 -m venv venv
[INFO]: Upgrade pip to latest version
[INFO]: -> running bash -c source venv/bin/activate && pip install -U pip
[INFO]: Install Cython in case one of the modules needs it to build
[INFO]: -> running bash -c venv/bin/pip install Cython
[INFO]: Creating a requirements.txt file for the Python modules
[INFO]: Installing Python modules with pip
[INFO]: IF THIS FAILS, THE MODULES MAY NEED A RECIPE. A reason for this is often modules compiling native code that is unaware of Android cross-compilation and does not work without additional changes / workarounds.
[INFO]: -> running bash -c venv/bin/pip install -v --target '/home/kade/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/TechSupport' --no-deps -r requirements.txt
working: Given no hashes to check 0 links for project 'pip': discarding no candidates Exception in thread background thread for pid 87614:
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/home/kade/.local/lib/python3.8/site-packages/sh.py", line 1662, in wrap
fn(*args, **kwargs)
File "/home/kade/.local/lib/python3.8/site-packages/sh.py", line 2606, in background_thread
handle_exit_code(exit_code)
File "/home/kade/.local/lib/python3.8/site-packages/sh.py", line 2304, in fn
return self.command.handle_command_exit_code(exit_code)
File "/home/kade/.local/lib/python3.8/site-packages/sh.py", line 877, in handle_command_exit_code
raise exc
sh.ErrorReturnCode_1:
RAN: /usr/bin/bash -c 'venv/bin/pip install -v --target '"'"'/home/kade/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/TechSupport'"'"' --no-deps -r requirements.txt'
STDOUT:
Ignoring "sys._home = value" override
Created temporary directory: /tmp/pip-target-glpqbk1s
WARNING: pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.
Created temporary directory: /tmp/pip-ephem-wheel-cache-iehsioj4
Created temporary directory: /tmp/pip-req-tracker-ufgkjs5i
Created requirements tracker '/tmp/pip-req-tracker-ufgkjs5i'
Created temporary directory: /tmp/pip-install-hriv4lj0
Collecting certifi (from -r requirements.txt (line 1))
1 location(s) to search for versions of certifi:
* https://pypi.org/simple/certifi/
Getting page https://pypi.org/simple/certifi/
Found index url https://pypi.org/simple
Looking up "https://pypi.org/simple/certifi/" in the cache
Request header has "max_age" as 0, cache bypassed
Starting new HTTPS connection (1): pypi.org:443
Incremented Retry for (url='/simple/certifi/'): Retry(total=4, connect=None, read=None, redirect=None, status=None)
WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/certifi/
Starting new HTTPS connection (2): pypi.org:443
Incremented Retry for (url='/simple/certifi/'): Retry(total=3, connect=None, read=None, redirect=None, status=None)
WARNING: Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/certifi/
Starting new HTTPS connection (3): pypi.org:443
Incremented Retry for (url='/simple/certifi/'): Retry(total=2, connect=None, read=None, redirect=None, status=None)
WARNING: Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/certifi/
Starting new HTTPS connection (4): pypi.org:443
Incremented Retry for (url='/simple/certifi/'): Retry(total=1, connect=None, read=None, redirect=None, status=None)
WARNING: Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/certifi/
Starting new HTTPS connection (5): pypi.org:443
Incremented Retry for (url='/simple/certifi/'): Retry(total=0, connect=None, read=None, redirect=None, status=None)
WARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/certifi/
Starting new HTTPS connection (6): pypi.org:443
Could not fetch URL https://pypi.org/simple/certifi/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retries exceeded with url: /simple/certifi/ (Caused by SSLError("Can't connect to HTTPS URL because the SSL module is not available.")) - skipping
Given no hashes to check 0 links for project 'certifi': discarding no candidates
ERROR: Could not find a version that satisfies the requirement certifi (from -r requirements.txt (line 1)) (from versions: none)
Cleaning up...
Removed build tracker '/tmp/pip-req-tracker-ufgkjs5i'
ERROR: No matching distribution found for certifi (from -r requirements.txt (line 1))
Exception information:
Traceback (most recent call last):
File "/home/kade/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_internal/cli/base_command.py", line 188, in main
status = self.run(options, args)
File "/home/kade/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_internal/commands/install.py", line 345, in run
resolver.resolve(requirement_set)
File "/home/kade/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_internal/legacy_resolve.py", line 196, in resolve
self._resolve_one(requirement_set, req)
File "/home/kade/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_internal/legacy_resolve.py", line 359, in _resolve_one
abstract_dist = self._get_abstract_dist_for(req_to_install)
File "/home/kade/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_internal/legacy_resolve.py", line 305, in _get_abstract_dist_for
abstract_dist = self.preparer.prepare_linked_requirement(
File "/home/kade/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_internal/operations/prepare.py", line 134, in prepare_linked_requirement
req.populate_link(finder, upgrade_allowed, require_hashes)
File "/home/kade/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_internal/req/req_install.py", line 211, in populate_link
self.link = finder.find_requirement(self, upgrade)
File "/home/kade/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_internal/index.py", line 1227, in find_requirement
raise DistributionNotFound(
pip._internal.exceptions.DistributionNotFound: No matching distribution found for certifi (from -r requirements.txt (line 1))
WARNING: pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.
1 location(s) to search for versions of pip:
* https://pypi.org/simple/pip/
Getting page https://pypi.org/simple/pip/
Found index url https://pypi.org/simple
Looking up "https://pypi.org/simple/pip/" in the cache
Request header has "max_age" as 0, cache bypassed
Starting new HTTPS connection (1): pypi.org:443
Could not fetch URL https://pypi.org/simple/pip/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retries exceeded with url: /simple/pip/ (Caused by SSLError("Can't connect to HTTPS URL because the SSL module is not available.")) - skipping
Given no hashes to check 0 links for project 'pip': discarding no candidates
STDERR:
Traceback (most recent call last):
File "/usr/lib/python3.8/runpy.py", line 193, in _run_module_as_main
return _run_code(code, main_globals, None,
File "/usr/lib/python3.8/runpy.py", line 86, in _run_code
exec(code, run_globals)
File "/home/kade/.buildozer/android/platform/python-for-android/pythonforandroid/toolchain.py", line 1260, in <module>
main()
File "/home/kade/.buildozer/android/platform/python-for-android/pythonforandroid/entrypoints.py", line 18, in main
ToolchainCL()
File "/home/kade/.buildozer/android/platform/python-for-android/pythonforandroid/toolchain.py", line 709, in __init__
getattr(self, command)(args)
File "/home/kade/.buildozer/android/platform/python-for-android/pythonforandroid/toolchain.py", line 154, in wrapper_func
build_dist_from_args(ctx, dist, args)
File "/home/kade/.buildozer/android/platform/python-for-android/pythonforandroid/toolchain.py", line 213, in build_dist_from_args
build_recipes(build_order, python_modules, ctx,
File "/home/kade/.buildozer/android/platform/python-for-android/pythonforandroid/build.py", line 600, in build_recipes
run_pymodules_install(
File "/home/kade/.buildozer/android/platform/python-for-android/pythonforandroid/build.py", line 820, in run_pymodules_install
shprint(sh.bash, '-c', (
File "/home/kade/.buildozer/android/platform/python-for-android/pythonforandroid/logger.py", line 167, in shprint
for line in output:
File "/home/kade/.local/lib/python3.8/site-packages/sh.py", line 925, in next
self.wait()
File "/home/kade/.local/lib/python3.8/site-packages/sh.py", line 849, in wait
self.handle_command_exit_code(exit_code)
File "/home/kade/.local/lib/python3.8/site-packages/sh.py", line 877, in handle_command_exit_code
raise exc
sh.ErrorReturnCode_1:
RAN: /usr/bin/bash -c 'venv/bin/pip install -v --target '"'"'/home/kade/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/TechSupport'"'"' --no-deps -r requirements.txt'
STDOUT:
Ignoring "sys._home = value" override
Created temporary directory: /tmp/pip-target-glpqbk1s
WARNING: pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.
Created temporary directory: /tmp/pip-ephem-wheel-cache-iehsioj4
Created temporary directory: /tmp/pip-req-tracker-ufgkjs5i
Created requirements tracker '/tmp/pip-req-tracker-ufgkjs5i'
Created temporary directory: /tmp/pip-install-hriv4lj0
Collecting certifi (from -r requirements.txt (line 1))
1 location(s) to search for versions of certifi:
* https://pypi.org/simple/certifi/
Getting page https://pypi.org/simple/certifi/
Found index url https://pypi.org/simple
Looking up "https://pypi.org/simple/certifi/" in the cache
Request header has "max_age" as 0, cache bypassed
Starting new HTTPS connection (1): pypi.org:443
Incremented Retry for (url='/simple/certifi/'): Retry(total=4, connect=None, read=None, redirect=None, status=None)
WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/certifi/
Starting new HTTPS connection (2): pypi.org:443
Incremented Retry for (url='/simple/certifi/'): Retry(total=3, connect=None, read=None, redirect=None, status=None)
WARNING: Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/certifi/
Starting new HTTPS connection (3): pypi.org:443
Incremented Retry for (url='/simple/certifi/'): Retry(total=2, connect=None, read=None, redirect=None, status=None)
WARNING: Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/certifi/
Starting new HTTPS connection (4): pypi.org:443
Incremented Retry for (url='/simple/certifi/'): Retry(total=1, connect=None, read=None, redirect=None, status=None)
WARNING: Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/certifi/
Starting new HTTPS connection (5): pypi.org:443
Incremented Retry for (url='/simple/certifi/'): Retry(total=0, connect=None, read=None, redirect=None, status=None)
WARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/certifi/
Starting new HTTPS connection (6): pypi.org:443
Could not fetch URL https://pypi.org/simple/certifi/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retries exceeded with url: /simple/certifi/ (Caused by SSLError("Can't connect to HTTPS URL because the SSL module is not available.")) - skipping
Given no hashes to check 0 links for project 'certifi': discarding no candidates
ERROR: Could not find a version that satisfies the requirement certifi (from -r requirements.txt (line 1)) (from versions: none)
Cleaning up...
Removed build tracker '/tmp/pip-req-tracker-ufgkjs5i'
ERROR: No matching distribution found for certifi (from -r requirements.txt (line 1))
Exception information:
Traceback (most recent call last):
File "/home/kade/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_internal/cli/base_command.py", line 188, in main
status = self.run(options, args)
File "/home/kade/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_internal/commands/install.py", line 345, in run
resolver.resolve(requirement_set)
File "/home/kade/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_internal/legacy_resolve.py", line 196, in resolve
self._resolve_one(requirement_set, req)
File "/home/kade/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_internal/legacy_resolve.py", line 359, in _resolve_one
abstract_dist = self._get_abstract_dist_for(req_to_install)
File "/home/kade/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_internal/legacy_resolve.py", line 305, in _get_abstract_dist_for
abstract_dist = self.preparer.prepare_linked_requirement(
File "/home/kade/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_internal/operations/prepare.py", line 134, in prepare_linked_requirement
req.populate_link(finder, upgrade_allowed, require_hashes)
File "/home/kade/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_internal/req/req_install.py", line 211, in populate_link
self.link = finder.find_requirement(self, upgrade)
File "/home/kade/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_internal/index.py", line 1227, in find_requirement
raise DistributionNotFound(
pip._internal.exceptions.DistributionNotFound: No matching distribution found for certifi (from -r requirements.txt (line 1))
WARNING: pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.
1 location(s) to search for versions of pip:
* https://pypi.org/simple/pip/
Getting page https://pypi.org/simple/pip/
Found index url https://pypi.org/simple
Looking up "https://pypi.org/simple/pip/" in the cache
Request header has "max_age" as 0, cache bypassed
Starting new HTTPS connection (1): pypi.org:443
Could not fetch URL https://pypi.org/simple/pip/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retries exceeded with url: /simple/pip/ (Caused by SSLError("Can't connect to HTTPS URL because the SSL module is not available.")) - skipping
Given no hashes to check 0 links for project 'pip': discarding no candidates
STDERR:
# Command failed: /usr/bin/python3 -m pythonforandroid.toolchain create --dist_name=TechSupport --bootstrap=sdl2 --requirements=python3,kivy,cython,webbrowser,certifi,psutil,platform,pyOpenSSL,kivyMD --arch armeabi-v7a --copy-libs --color=always --storage-dir="/home/kade/.buildozer/android/platform/build-armeabi-v7a" --ndk-api=21
# ENVIRONMENT:
# SHELL = '/bin/bash'
# SESSION_MANAGER = 'local/ubuntu:@/tmp/.ICE-unix/1799,unix/ubuntu:/tmp/.ICE-unix/1799'
# QT_ACCESSIBILITY = '1'
# COLORTERM = 'truecolor'
# XDG_CONFIG_DIRS = '/etc/xdg/xdg-ubuntu:/etc/xdg'
# XDG_MENU_PREFIX = 'gnome-'
# GNOME_DESKTOP_SESSION_ID = 'this-is-deprecated'
# GTK_IM_MODULE = 'ibus'
# QT4_IM_MODULE = 'ibus'
# GNOME_SHELL_SESSION_MODE = 'ubuntu'
# SSH_AUTH_SOCK = '/run/user/1000/keyring/ssh'
# XMODIFIERS = '@im=ibus'
# DESKTOP_SESSION = 'ubuntu'
# SSH_AGENT_PID = '1713'
# GTK_MODULES = 'gail:atk-bridge'
# PWD = '/home/kade'
# XDG_SESSION_DESKTOP = 'ubuntu'
# LOGNAME = 'kade'
# XDG_SESSION_TYPE = 'x11'
# GPG_AGENT_INFO = '/run/user/1000/gnupg/S.gpg-agent:0:1'
# XAUTHORITY = '/run/user/1000/gdm/Xauthority'
# GJS_DEBUG_TOPICS = 'JS ERROR;JS LOG'
# WINDOWPATH = '2'
# HOME = '/home/kade'
# USERNAME = 'kade'
# IM_CONFIG_PHASE = '1'
# LANG = 'en_US.UTF-8'
# LS_COLORS = 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:'
# XDG_CURRENT_DESKTOP = 'ubuntu:GNOME'
# VTE_VERSION = '6001'
# GNOME_TERMINAL_SCREEN = '/org/gnome/Terminal/screen/bf0f7433_8abc_4fa4_9c68_43c1a3e0773c'
# INVOCATION_ID = 'cf2614f003c745d7a5d713075df4d19c'
# MANAGERPID = '1528'
# CLUTTER_IM_MODULE = 'ibus'
# GJS_DEBUG_OUTPUT = 'stderr'
# LESSCLOSE = '/usr/bin/lesspipe %s %s'
# XDG_SESSION_CLASS = 'user'
# TERM = 'xterm-256color'
# LESSOPEN = '| /usr/bin/lesspipe %s'
# USER = 'kade'
# GNOME_TERMINAL_SERVICE = ':1.120'
# DISPLAY = ':0'
# SHLVL = '2'
# QT_IM_MODULE = 'ibus'
# XDG_RUNTIME_DIR = '/run/user/1000'
# JOURNAL_STREAM = '9:48501'
# XDG_DATA_DIRS = '/usr/share/ubuntu:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop'
# PATH = '/home/kade/.buildozer/android/platform/apache-ant-1.9.4/bin:/home/kade/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/home/kade/.local/bin/:/home/kade/.local/bin/'
# GDMSESSION = 'ubuntu'
# DBUS_SESSION_BUS_ADDRESS = 'unix:path=/run/user/1000/bus'
# _ = '/home/kade/.local/bin/buildozer'
# PACKAGES_PATH = '/home/kade/.buildozer/android/packages'
# ANDROIDSDK = '/home/kade/.buildozer/android/platform/android-sdk'
# ANDROIDNDK = '/home/kade/.buildozer/android/platform/android-ndk-r19c'
# ANDROIDAPI = '27'
# ANDROIDMINAPI = '21'
#
# Buildozer failed to execute the last command
# The error might be hidden in the log above this error
# Please read the full log, and search for it before
# raising an issue with buildozer itself.
# In case of a bug report, please add a full log with log_level = 2
Versions
Description
I am working with KivyMD to develop a cross platform application. I have successfully been able to compile the application in Windows using pyinstaller. Now I am working on a Linux Box to compile the app for an Android device. I have followed the guides to setup buildozer requirements and completed the following.
sudo apt update sudo apt install -y git zip unzip openjdk-8-jdk python3-pip autoconf libtool pkg-config zlib1g-dev libncurses5-dev libncursesw5-dev libtinfo5 cmake libffi-dev pip3 install --user --upgrade cython virtualenv sudo apt install cython
also I install these following packages sudo apt install cython3 sudo apt-get install autoconf sudo apt-get install automake sudo apt-get install g++ sudo apt-get install libtool m4 automake sudo apt-get install lld
Then I run the command below against the spec file below and receive the error message.
It seems to be related to needing to download a file (not sure why) and not having the ssl module available... I have pyOpenSSL installed, and I read that ssl isn't compatible with my version of python so I'm really not sure how to resolve this.
Any help is appreciated.
buildozer.spec
Command:
Spec file:
Logs