刚才,我已经在云平台上建立了Linux。
我正在CentOS 6.4上安装python3.4。
我不能在这种情况下出去。
我不明白下面的意思是什么。
我怎么解决这个问题?
$yum install gcc
...
$./configure
...
...
configure: creating ./config.status
config.status: creating Makefile.pre
config.status: creating Modules/Setup.config
config.status: creating Misc/python.pc
config.status: creating Misc/python-config.sh
config.status: creating Modules/ld_so_aix
config.status: creating pyconfig.h
config.status: pyconfig.h is unchanged
creating Modules/Setup
creating Modules/Setup.local
creating Makefile
$make
...
# Substitution happens here, as the completely-expanded BINDIR
# is not available in configure
sed -e "s,@EXENAME@,/usr/local/bin/python3.4m," < ./Misc/python- config.in >python-config.py
# Replace makefile compat. variable references with shell script compat. ones; ->
sed -e 's,\$(\([A-Za-z0-9_]*\)),\$\{\1\},g' < Misc/python-config.sh >python-config
# On Darwin, always use the python version of the script, the shell
# version doesn't use the compiler customizations that are provided
# in python (_osx_support.py).
if test `uname -s` = Darwin; then \
cp python-config.py python-config; \
fi我又试过了。奇怪的是,错误信息已经消失了。
发布于 2016-09-25 03:54:08
首先:make然后:make install而不是:make & make install
https://stackoverflow.com/questions/31048213
复制相似问题