We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm on a kali linux and it seems that whenever you pip install cython on a linux machine it gets called cython3
pip install cython
Before Buildozer gives the error # Cython (cython) not found, please install it. It should check if there's a cython3
# Cython (cython) not found, please install it.
The current work around for this though is running this: sudo ln -s $(which cython3) /usr/local/bin/cython
sudo ln -s $(which cython3) /usr/local/bin/cython
The text was updated successfully, but these errors were encountered:
Buildozer doesn't support Cython 3 yet, because python-for-android doesn't yet.
Sorry, something went wrong.
No branches or pull requests
I'm on a kali linux and it seems that whenever you
pip install cython
on a linux machine it gets called cython3Before Buildozer gives the error
# Cython (cython) not found, please install it.
It should check if there's a cython3
The current work around for this though is running this:
sudo ln -s $(which cython3) /usr/local/bin/cython
The text was updated successfully, but these errors were encountered: