在Linux中安装Python 3.4.4时出错

时间:2017-05-23 12:40:25

标签: python python-3.x makefile configure python-install

通过运行./configure脚本并将 Python 3.4.4 安装到Linux服务器中并获得以下错误。

checking for ensurepip... upgrade
configure: creating ./config.status
config.status: error: cannot find input file: `Makefile.pre.in'

我正在尝试搜索但没有获得那么多信息,专家可以在这里提供他们的意见,将会感激你。

1 个答案:

答案 0 :(得分:2)

我删除了旧的python目录,并按照以下步骤为我工作,也想与大家分享。

wget https://www.python.org/ftp/python/3.4.4/Python-3.4.4.tgz
tar xzf Python-3.4.4.tgz
cd Python-3.4.4/
./configure
make altinstall
python3.4 -V