Open JoeWise opened 7 months ago
It appears to be trying to install a dependency called :
. This fails, not surprisingly.
Try installing the build dependencies first with pip3 install gphoto2 --user "setuptools >= 59.6", "toml"
, then install python-gphoto2
with the same command as before.
Thanks Jim, installing all of the build dependencies separately fixed my issue.
What version of Python are you using? 3.7
What version of libgphoto2 have you installed? 2.5.31
How have you installed (or attempted to install) python-gphoto2? I have previously installed successfully using the Binary wheel method
I am developing on a Raspberry Pi Zero that is currently on Buster, where the latest version of libgphoto2 available via apt install is 2.5.22. However, I need to use version 2.5.31. I followed the instructions in the INSTALL.rst document in this repository regarding installing pythong-gphoto2 with a "Local" libgphoto2. I was able to download the source for 2.5.31 and build it locally. For the prefix option when running the configure script I chose /home/pi/libgphoto2-2.5.31/build as the location. However, when I go to run the pip command to install python-gphoto2 I get an error.
Here is the output.
My understanding was that providing the
:all:
satisfies a requirement, but it doesn't seem to work. Any insight into fixing this issue is greatly appreciated!