Hedgar
08/27/2022, 7:41 AMAnna Geller
08/27/2022, 11:02 AMHedgar
08/27/2022, 6:00 PMpyenv
to determine a global version of Python actually locks other dependencies to their version prior to when pyenv
was initially used.
To solve this challenge I had to fall back on pyenv
to reconfigure my python and all its packages especially Sqlit3 which was already updated via brew.
I ran the below code, giving pyenv
my current version of 3.10.4, yours could be different.
LDFLAGS="-L/usr/local/opt/sqlite/lib -L/usr/local/opt/zlib/lib" CPPFLAGS="-I/usr/local/opt/sqlite/include -I/usr/local/opt/zlib/include" pyenv install -v 3.10.4
Watch the magic!!
☝️Dont forget to change to your desired python version like I said mine is 3.10.4
See this issues for better understanding:
https://github.com/pyenv/pyenv/issues/333Anna Geller
08/27/2022, 6:43 PM