问题: centos7 最小化安装后,源码安装python3.5.2,在virtualenv环境下使用ipython提示
IPython History requires SQLite, your history will not be saved原因: centos7 最小化安装后,没有安装sqlite-devel。类似的openssl-devel也会出现类似的问题。
解决:
yum install sqlite-devel然后再次编译安装python3.5.2,即可解决。
转载于:https://my.oschina.net/hongyu201/blog/799683