我正在尝试在我的共享主机上安装一个新的 Python 环境。我按照这篇文章中写的步骤操作:
mkdir ~/src
wget http://www.python.org/ftp/python/2.7.1/Python-2.7.1.tgz
tar -zxvf Python-2.7.1.tar.gz
cd Python-2.7.1
mkdir ~/.localpython
./configure --prefix=/home/<user>/.localpython
make
make install
进入./configure --prefix=/home/<user>/.localpython
命令后,我得到以下输出:
checking for --enable-universalsdk... no
checking for --with-universal-archs... 32-bit
checking MACHDEP... linux3
checking EXTRAPLATDIR...
checking machine type as reported by uname -m... x86_64
checking for --without-gcc... no
checking for gcc... no
checking for cc... no
checking for cl.exe... no
configure: error: in `/home3/mikos89/Python-2.7.1':
configure: error: no acceptable C compiler found in $PATH
See `config.log' for more details.
如何解决这个问题?我一直试图找到一个解决方案 3 个小时,但我仍然被困在一个地方。
更新
Hostgator不允许在其共享帐户上使用 gcc: