SQLite Forum

Compiling sqlite3 with readline support
Login
Was having the same issue on Linux Mint.

This was a trivial omission, but the compilation requires development libraries (for Debian its libreadline-dev and libncurses-dev).
Once these are installed, the options worked as expected: 
`
./configure --enable-editline  
make clean && make
sudo make install
`