Open Ublimjo opened 6 years ago
Do you have make
available? That error is likely due to attempting to invoke make
without it being present in $PATH
Yes, I have make
@Ublimjo I think you are really trying to cross-build; in this case the make command (and a local build system) must be available in the same environment of the termux python interpreter;
@lmctv what should I do ?
Pynacl bindings depend on python cffi, and inherit it's dependence on a working build environment; at this time we don't have ready to follow recipes for cross building, other than a generic suggestion to run the build in a native or fully emulated environment, whose resulting wheel should correctly work also without the build environment.
FWIW I've had success compiling pynacl in termux with Python3 (I've not tried with python 2.7 which you are using.)
This works too:
$ pkg install clang python-dev libffi-dev openssl-dev libsodium-dev
$ SODIUM_INSTALL=system pip install pynacl
Today (2020) works this: $ pkg install clang python libffi openssl libsodium $ SODIUM_INSTALL=system pip install pynacl
@MadWolfBY thank buddy its worked
Today (2020) works this: $ pkg install clang python libffi openssl libsodium $ SODIUM_INSTALL=system pip install pynacl
This worked! Thanks!
very thanks
This works too:
$ pkg install clang python-dev libffi-dev openssl-dev libsodium-dev $ SODIUM_INSTALL=system pip install pynacl
THANK YOU SO MUCH!! THAT WORKED!
Today (2020) works this: $ pkg install clang python libffi openssl libsodium $ SODIUM_INSTALL=system pip install pynacl
Many thanks
Today (2020) works this: $ pkg install clang python libffi openssl libsodium $ SODIUM_INSTALL=system pip install pynacl
Good work