T
Termux•2mo ago
tushar887427.

Need Help To Run This Got

Hello everyone, I'm trying to run this project on my Android device using Termux (no PC access): 🔗 https://github.com/joshua-holmes/google-photos-metadata-fix I managed to clone the repo using: git clone https://github.com/joshua-holmes/google-photos-metadata-fix.git cd google-photos-metadata-fix But I ran into a lot of issues installing the dependencies—especially with Pillow, and missing libjpeg, zlib, and other build dependencies. Also, packages like python-dev, zlib-dev, libjpeg-turbo-dev etc. show “no installation candidate” errors in Termux.
GitHub
GitHub - joshua-holmes/google-photos-metadata-fix: This is a comman...
This is a command line application that fixes metadata for Google Photos exported pics - joshua-holmes/google-photos-metadata-fix
GitHub
GitHub - joshua-holmes/google-photos-metadata-fix: This is a comman...
This is a command line application that fixes metadata for Google Photos exported pics - joshua-holmes/google-photos-metadata-fix
7 Replies
NoNameForIdea
NoNameForIdea•2mo ago
TUR hosts a python package index, look at their repo README. For packages that says "no installation candidates" (after using the TUR pip index) you need to build them for sources in their repo because they don't provide compiled wheel for Termux, nor source in PyPI index.
owokitty
owokitty•2mo ago
@tushar887427. hello, I think I have been able to successfully install this software, could you try this and let me know if this helps?
pkg upgrade
pkg install python-pillow libjpeg-turbo zlib git build-essential
git clone https://github.com/bigcat88/pillow_heif.git
cd pillow_heif
pip install .
cd ..
git clone https://github.com/joshua-holmes/google-photos-metadata-fix.git
cd google-photos-metadata-fix
pip install .
python -c "import google_photos_metadata_fix"
pkg upgrade
pkg install python-pillow libjpeg-turbo zlib git build-essential
git clone https://github.com/bigcat88/pillow_heif.git
cd pillow_heif
pip install .
cd ..
git clone https://github.com/joshua-holmes/google-photos-metadata-fix.git
cd google-photos-metadata-fix
pip install .
python -c "import google_photos_metadata_fix"
this worked for me the error that happened to me was related to "pillow_heif" i was able to bypass it by cloning the github repository of pillow_heif and using pip install ., shown there then afterward, I used pip install . on google-photos-metadata-fix again
tushar887427.
tushar887427.OP•4w ago
[end of output] note: This error originates from a subprocess, and is likely not a problem with pip. ERROR: Failed building wheel for pillow-heif Successfully built google-photos-metadata-fix Failed to build pillow-heif ERROR: Failed to build installable wheels for some pyproject.toml based projects (pillow-heif)
NoNameForIdea
NoNameForIdea•4w ago
Did you built pillow-heif from the repo?
tushar887427.
tushar887427.OP•4w ago
No I don't wanna pillow heif, i just want to know if this work's without heif, and does it do what it say, like merge photo and metadata, in android or not
owokitty
owokitty•4w ago
for me it doesn't work without heif and it requires the commands i sent and all of them not just a few

Did you find this page helpful?