Ubuntu、Anaconda:无法导入 python 匀称包

Ubuntu, Anaconda: Cannot import python shapely package

Shapely Import problem Related to MAC OS X

我使用 sudo apt-get install python-shapely.

安装得很好

我正在使用 Python 2.7.8 |Anaconda 2.1.0 (64-bit)|ubuntu 14.04 LTS (64 bit)

成功安装后,当我尝试从 ipython 导入它时出现导入错误。 ImportError: No module named shapely

我该如何解决这个问题?

发生这种情况是因为 apt-get 将软件包安装到 /usr/python2.7/lib/site-packages 下的系统默认值 python。 Anaconda 有自己的包管理器,conda,您可能想在您的案例中使用它。 conda install shapely 应该可以解决问题。