ImportError: No module named ‘_sqlite3’ in python3.3

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.

Leave a Comment