Python 3:Python 3 不支持 pyzipcode

use*_*968 1 pip python-3.x

我正在尝试pyzipcode使用 Python 3进行 pip install ,但出现以下错误。有没有办法解决这个问题。

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.
Run Code Online (Sandbox Code Playgroud)

Ram*_*mar 5

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

pip install pyzipcode3 
Run Code Online (Sandbox Code Playgroud)