在共享主机服务器上从源代码安装 C 编译器

在共享主机服务器上从源代码安装 C 编译器

我在 bluehost 购买了一个共享主机服务器。

我需要能够安装新的 python 模块,但由于我在服务器上没有 root 权限,所以我无法使用当前构建和安装的 python 来执行此操作。

我正在尝试在我的工作空间中安装 python,这样我将拥有 root 权限(我不能使用 apt-get install - 它必须来自源代码)。

我下载了 python tar 文件并将其解压缩,当我尝试安装它时,它抛出了以下错误:

configure: error: in '/home2/ofekafsc/python/Python-3.6.5':

configure: error: no acceptable C compiler found in $PATH

当我尝试安装 GCC 时发生了同样的事情

[email protected] [~/gcc/objdir]# $PWD/../gcc-8.2.0/configure --prefix=$HOME /gcc-8.2.0 --enable-languages=c,c++,fortran,go checking build system type... x86_64-pc-linux-gnu checking host system type... x86_64-pc-linux-gnu checking target system type... x86_64-pc-linux-gnu checking for a BSD-compatible install... /usr/bin/install -c checking whether ln works... yes checking whether ln -s works... no, using cp -p checking for a sed that does not truncate output... /usr/bin/sed checking for gawk... gawk checking for libatomic support... yes checking for libitm support... yes checking for libsanitizer support... yes checking for libvtv support... yes checking for libmpx support... yes checking for libhsail-rt support... yes checking for gcc... no checking for cc... no checking for cl.exe... no configure: error: in '/home2/ofekafsc/gcc/objdir': configure: error: no acceptable C compiler found in $PATH

正如我所说的,我没有足够高的权限来执行某些操作,例如sudo apt-get install gcc,我必须从源代码安装它。

任何有助于解决问题的帮助都会被乐意接受!!

相关内容