Trying to deploy an android app using Buildozer. build with Kivy, based on Sympy package.
getting the next error lines:
STDOUT:
Please install the mpmath package with a version >= 0.19
STDERR:
# Command failed: /usr/bin/python3 -m pythonforandroid.toolchain
create --dist_name=myapp --bootstrap=sdl2 --
requirements=python3,kivy,sympy --arch armeabi-v7a
--copy-libs --color=always --
storage-dir="/home/ohad/Scalc/.buildozer/android/platform/build-armeabi-v7a" --ndk-api=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
Imports of my script, not include Kivy's imports:
from sympy import *
from sympy.parsing.sympy_parser import parse_expr
from sympy.parsing.sympy_parser import standard_transformations, \
implicit_multiplication_application
Update: After trying to deploy without sympy, it worked, the app crashed immediately on the phone, so its a problem with mpmath,sympy for sure
Full output of command: sudo buildozer android debug deploy run
https://github.com/Ohadforman/Error-buildozer/blob/master/Error
any ideas?