dwgoon / jpegio

A python package for accessing the internal variables of JPEG file format such as DCT coefficients and quantization tables
Apache License 2.0
73 stars 18 forks source link

Error in setup.py #8

Closed albertobagnacani closed 4 years ago

albertobagnacani commented 4 years ago

Hi,

when I try to run the installation via python setup.py install I got this: Traceback (most recent call last): File "setup.py", line 51, in os_arch = "mac_x%d"%(arch) TypeError: %d format: a number is required, not str

It works if I change the string with: os_arch = "mac_x64"

I have a macOS Catalina 10.15.4.

dwgoon commented 4 years ago

Thanks for your report. I will revise the setup.py script.