You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using MacOS M2 Max (Sonoma 14.5 (23F79)) and I installed fliroy via pip within a conda environment. I previously installed Exiftool as indicated here and the installation worked fine as I could execute the tool from the terminal. I also modified my PATH (export PATH=$PATH:/usr/local/bin).
However, when I tried to use the spli_seq script provided I would get the following warning :
WARNING:flirpy.util.exiftool:Exiftool not installed, try: apt install exiftool
and the following error :
AttributeError: 'Exiftool' object has no attribute 'path'
Something that worked for me is to correct the path in the lines 20-21 of the file : /flirpy/util/exiftool.py
The correction in my case is :
elif platform.uname()[4].startswith("arm"):
if os.path.isfile("/usr/local/bin/exiftool"):
self.path = "/usr/local/bin/exiftool"
The text was updated successfully, but these errors were encountered:
On Tue, 9 Jul 2024 at 12:36, aalonsop ***@***.***> wrote:
Hello
Great work on this tool, many thanks!
I'm using MacOS M2 Max (Sonoma 14.5 (23F79)) and I installed fliroy via
pip within a conda environment. I previously installed Exiftool as
indicated here <https://exiftool.org/install.html> and the installation
worked fine as I could execute the tool from the terminal. I also modified
my PATH (export PATH=$PATH:/usr/local/bin).
However, when I tried to use the *spli_seq* script provided I would get
the following warning :
WARNING:flirpy.util.exiftool:Exiftool not installed, try: apt install
exiftool
and the following error :
AttributeError: 'Exiftool' object has no attribute 'path'
Something that worked for me is to correct the path in the lines 20-21 of
the file : /flirpy/util/exiftool.py
The correction in my case is :
elif platform.uname()[4].startswith("arm"):
if os.path.isfile("/usr/local/bin/exiftool"):
self.path = "/usr/local/bin/exiftool"
—
Reply to this email directly, view it on GitHub
<#98>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAYDMJ3FK53O5FCFDIFPA2TZLMV7LAVCNFSM6AAAAABKRZYWMOVHI2DSMVQWIX3LMV43ASLTON2WKOZSGM4TMOBUGAZDANQ>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
Hello
Great work on this tool, many thanks!
I'm using MacOS M2 Max (Sonoma 14.5 (23F79)) and I installed fliroy via pip within a conda environment. I previously installed Exiftool as indicated here and the installation worked fine as I could execute the tool from the terminal. I also modified my PATH (export PATH=$PATH:/usr/local/bin).
However, when I tried to use the spli_seq script provided I would get the following warning :
and the following error :
Something that worked for me is to correct the path in the lines 20-21 of the file : /flirpy/util/exiftool.py
The correction in my case is :
The text was updated successfully, but these errors were encountered: