Python 3:Python 3中不支持pyzipcode

问题描述 投票:1回答:2

我正在尝试使用Python 3来安装pyzipcode,我收到以下错误。有没有办法可以解决这个问题。

Collecting pysqlite (from pyzipcode==1.0->-r requirements.txt (line 16))
  Downloading pysqlite-2.8.3.tar.gz (80kB)
    100% |████████████████████████████████| 81kB 5.8MB/s 
    Complete output from command python setup.py egg_info:
    pysqlite is not supported on Python 3. When using Python 3, use the sqlite3 module from the standard library.
python-3.x pip
2个回答
3
投票

我也面临同样的问题,我使用以下方法安装:

pip install pyzipcode3 

0
投票

做:

pip3 install pyzipcode3

这对我也有用

© www.soinside.com 2019 - 2024. All rights reserved.