-
-
Notifications
You must be signed in to change notification settings - Fork 7.1k
New issue
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
Dependencies pandas and numpy don't install with pip on Termux #1945
Comments
What am I missing |
Thank you for opening this issue, @kbarrett975. What exactly did you run to get this error? |
I get the same problem.. I already install libcrypt and update all package to the newest version but after i ran pip3 install -r requirements.txt It still show the same error..may i know why |
Thank you for providing the complete installation log, @Kamski18. Try updating your python3 -m pip install --upgrade pip setuptools wheel After that, try installing the dependencies again: pip3 install -r requirements.txt |
Thanks for the help @matheusfelipeog but I already update using the following command but still get an error |
@kbarrett975 @Kamski18 It seems that Termux has issues building the I've noticed that this is a common problem in Termux, with several complaints on: link 1: termux/termux-packages#10808 Unfortunately, to use the sherlock project in a Termux environment, you'll have to follow a few extra steps for now. First, update the package list and install updates: pkg update && pkg upgrade Provide the The Termux community provides a repository of pre-built Python packages, called Let's install pkg install build-essential tur-repo After that, force an update on the package list again: pkg update Now, let's install the pre-built pkg install python-pandas python-numpy This will install the packages. You can check using: pip list Now you are ready to install the sherlock project dependencies: pip install -r requirements.txt I personally recommend installing sherlock project dependencies in a virtual environment instead of globally to avoid conflicts with dependencies from other projects. To create a virtual environment within the locally cloned sherlock project repository, use the following command: python -m venv --system-site-packages venv The To activate the virtual environment, use the following command: source venv/bin/activate Now, you can install the sherlock project dependencies in this virtual environment: pip install -r requirements.txt When you finish using sherlock, don't forget to deactivate the virtual environment: deactivate I've tested this, and it worked perfectly. I hope it works for you too. If you encounter any other problems, please let me know. Refs: ref 1: https://wiki.termux.com/wiki/Python |
THANKS! It work finally..Thank you for providing help for me! |
Worked for me Ty Vm! |
This doesn't work on Facebook prophet same pandas error |
Checklist
Description
WRITE DESCRIPTION HERE
The text was updated successfully, but these errors were encountered: