sqlite3 error
import sqlite3
Traceback (most recent call last):
File \"\", line 1, in
File \"/usr/local/lib/python3.3/sqlite3
For Python3 in Ubuntu:
sudo apt-get install libsqlite3-dev
wget https://www.python.org/ftp/python/3.6.3/Python-3.6.3.tar.xz
(replace the version number by your python3 version)tar -xf Python-3.6.3.tar.xz
cd Python-3.6.3/
./configure --enable-loadable-sqlite-extensions && make && sudo make install
refer: https://github.com/sloria/TextBlob/issues/173