When compiling Python 3.4.3 from source on CentOS 7 the README indicates to run
./configure
make
make test
sudo make install
On the second step, make
, I see
Python build finished successfully!
The necessary bits to build these optional modules were not found:
_bz2 _curses _curses_panel
_dbm _gdbm _lzma
_sqlite3 _ssl _tkinter
readline zlib
To find the necessary bits, look in setup.py in detect_modules() for the module's name.
But nothing in the source code for setup.py indicates what to do? It seems like I already have the requisite package?
$ sudo yum install readline
...
Package readline-6.2-10.el7.x86_64 already installed and latest version
Nothing to do
How do I get the readline
module for python 3?