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
For some anaconda users , the command "python3-config --ldflags "may return "-lpython3.6m -ldl -framework CoreFoundation -Wl,-stack_size,1000000 -framework CoreFoundation". As you can see, compared with common python , the path lacks something. So there will be an error when do the "make" operation.
This can be solved by manually change the makefile PYLIB part like this : PYLIBS := -L/Users/YOURNAME/anaconda3/lib/python3.6/config-3.6m-darwin -lpython3.6m -ldl -framework CoreFoundation
Just add the lib path by yourself
The text was updated successfully, but these errors were encountered:
For some anaconda users , the command "python3-config --ldflags "may return "-lpython3.6m -ldl -framework CoreFoundation -Wl,-stack_size,1000000 -framework CoreFoundation". As you can see, compared with common python , the path lacks something. So there will be an error when do the "make" operation.
This can be solved by manually change the makefile PYLIB part like this :
PYLIBS := -L/Users/YOURNAME/anaconda3/lib/python3.6/config-3.6m-darwin -lpython3.6m -ldl -framework CoreFoundation
Just add the lib path by yourself
The text was updated successfully, but these errors were encountered: