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
And they suggests temporarily hiding /usr/local/* from the system.
The following workaround works for me:
# rename /usr/local/* so that they won't affect the compilation of Python3 under the vendor/ directory
sudo -s sh -c "mv /usr/local/lib /usr/local/lib0; mv /usr/local/include /usr/local/include0"# now install pyre-ast
opam install pyre-ast
# recover the renamed directories
sudo -s sh -c "mv /usr/local/lib0 /usr/local/lib; mv /usr/local/include0 /usr/local/include"
Hope this helps!
The text was updated successfully, but these errors were encountered:
Hello! When I try to compile a code that uses pyre-ast as a library, I get the following error, indicating a linking-time error:
After some searching on the web, I found the following related issue:
beeware/Python-Apple-support#91
And they suggests temporarily hiding
/usr/local/*
from the system.The following workaround works for me:
Hope this helps!
The text was updated successfully, but these errors were encountered: