Shapely OSError: Could not find lib c or load any of its variants []

前端 未结 5 1241
自闭症患者
自闭症患者 2021-02-20 01:16

I\'m just trying to use the demo code. I run the following in Jupyter Notebook:

from shapely.geometry import shape

Which gives me the following:

5条回答
  •  忘掉有多难
    2021-02-20 02:04

    You may try to reset the environment variable DYLD_FALLBACK_LIBRARY_PATH:

    export DYLD_FALLBACK_LIBRARY_PATH=$(HOME)/lib:/usr/local/lib:/lib:/usr/lib
    

    Source

提交回复
热议问题