ImportError: No module named '_sqlite3' in python3.3

匿名 (未验证) 提交于 2019-12-03 02:01:02

问题:

sqlite3 error

import sqlite3 Traceback (most recent call last):   File "", line 1, in    File "/usr/local/lib/python3.3/sqlite3/__init__.py", line 23, in      from sqlite3.dbapi2 import *   File "/usr/local/lib/python3.3/sqlite3/dbapi2.py", line 26, in      from _sqlite3 import * ImportError: No module named '_sqlite3' 

i use sqlite3 install command

pip install pysqlite Downloading/unpacking pysqlite   Downloading pysqlite-2.6.3.tar.gz (76kB): 76kB downloaded   Running setup.py egg_info for package pysqlite     Traceback (most recent call last):       File "", line 16, in        File "/usr/local/lib/python3.3/codecs.py", line 300, in decode         (result, consumed) = self._buffer_decode(data, self.errors, final)     UnicodeDecodeError: 'utf-8' codec can't decode byte 0xe4 in position 98: invalid continuation byte      Complete output from command python setup.py egg_info:     Traceback (most recent call last):    File "", line 16, in     File "/usr/local/lib/python3.3/codecs.py", line 300, in decode      (result, consumed) = self._buffer_decode(data, self.errors, final)  UnicodeDecodeError: 'utf-8' codec can't decode byte 0xe4 in position 98: invalid continuation byte  ---------------------------------------- Cleaning up... Command python setup.py egg_info failed with error code 1 in /tmp/pip_build_root/pysqlite Storing complete log in /root/.pip/pip.log 

回答1:

I am a Fedora 20 user. To solve this:

  1. Install sqlite-devel package, using:

    yum install sqlite-devel 
  2. After installing,recompile python from the source using:

    ./configure make && make install 

For multiple versions of Python, use altinstall instead of install.



回答2:

I think it must be you not install sqlite3,you can do like this

 apt-get install sqlite3    sqlite3 -vesrion    apt-get install python-pysqlite2    apt-get install python-pysqlite2-dbg    apt-get install libsqlite3-dev     apt-get install sqlite    pip install pysqlite  

then you will will find the sqlite3



回答3:

The compile package is short of something,you should use yum to install these 5,and then recompile and install python3

yum install readline-devel yum install tk-devel yum install tcl-devel   yum install openssl-devel    yum install sqlite-devel  

and then recompile the python3

tar Jxvf  Python-3.5.0.tar.xz cd Python-3.5.0 ./configure --prefix=/usr/local/python3 make && make install 


易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!