Reputation: 4057
I've installed python 3.6.2 from source on Linux Mint 17. Also I've python 3.4.3 with OS installation. Just noticed that autocompete on TAB in interactive shell works only in 3.4.3. In 3.6.2 it just inserts tab character.
Any solutions?
Upvotes: 0
Views: 83
Reputation: 4057
Autocomplete and navigating history in python shell uses readline library (and module). You can check its availability by import readline
.
sudo apt-get install libreadline-dev
Appreciation for @user2357112 !
Upvotes: 1