Python匀称安装无法正常工作? [英] Python Shapely Install Not working?

查看:199
本文介绍了Python匀称安装无法正常工作?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有什么想法吗?我尝试卸载Shapely并使用PIP进行安装 我有Anaconda并安装了Fiona,并且Shapely看起来还不错. 简单代码:

import fiona
import shapely

dirVar = "C:\\Users\\me\\Desktop\\geocode\\"

with fiona.open(dirVar + "Regions.shp") as fiona_collection:

    shapefile_record = fiona_collection.next()
    shape = shapely.geometry.asShape(shapefile_record['geometry']) #GET ERROR HERE

    point = shapely.geometry.Point(32.398516, -39.754028) # longitude, latitude

    if shape.contains(point):
        print "Found shape for point."

AttributeError:模块"对象没有属性几何"

当我从Wing IDE看整形的方法时,我只会看到:

ctypes_declarations
ftools
geos

我认为如果安装正确,我应该可以看到几何图形吗?

有什么想法吗?

解决方案

您可以使用以下之一:

import shapely.geometry

from shapely import geometry

any thoughts? I've tried uninstalling Shapely and installing with PIP I have Anaconda and installed Fiona fine and Shapely seemingly fine. Simple code:

import fiona
import shapely

dirVar = "C:\\Users\\me\\Desktop\\geocode\\"

with fiona.open(dirVar + "Regions.shp") as fiona_collection:

    shapefile_record = fiona_collection.next()
    shape = shapely.geometry.asShape(shapefile_record['geometry']) #GET ERROR HERE

    point = shapely.geometry.Point(32.398516, -39.754028) # longitude, latitude

    if shape.contains(point):
        print "Found shape for point."

AttributeError: 'module' object has no attribute 'geometry'

When I look at the methods of shapely from Wing IDE I see only:

ctypes_declarations
ftools
geos

I would think I should see geometry if it was installed correctly?

Any thoughts?

解决方案

You could use one of these:

import shapely.geometry

or

from shapely import geometry

这篇关于Python匀称安装无法正常工作?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆