yukinarit/apnggif

Not working on Apple M1

Closed this issue · 4 comments

I was getting errors installing on a Mac M1

error: implicit declaration of function 'lseek' is invalid in C99 [-Werror,-Wimplicit-function-declaration] if (LSEEK(state->fd, state->start, SEEK_SET) == -1)

To fix, use homebrew to install the latest GCC
brew install gcc

Then set to use homebrew's gcc:

cd /opt/homebrew/bin      
ln -s gcc-11 gcc
ln -s g++-11 g++

Close your terminal

And using where gcc - find the path and put it in the command below:
env CC=/opt/homebrew/bin/gcc pip3 install apnggif

It should install successfully then.

Hi @sungkhum
Which python version are you using?

@yukinarit Python 3.9.9
I was able to install but still ran into this bug after and was unable to resolve: #4

@sungkhum
Pushed v0.1.4 to PyPI. Could you verify it?

Should have been fixed.