Compré un servidor host compartido en bluehost.
Necesito poder instalar nuevos módulos de Python, pero como no tengo permisos de root en el servidor, no puedo hacerlo con el Python actual que está construido e instalado.
Estoy tratando de instalar Python en mi espacio de trabajo para tener privilegios de root (no puedo usar apt-get install, tiene que ser del código fuente).
Descargué el archivo tar de Python y lo extraje, y cuando trato de instalarlo, me arroja el siguiente error:
configure: error: in '/home2/ofekafsc/python/Python-3.6.5':
configure: error: no acceptable C compiler found in $PATH
Lo mismo sucede cuando intento instalar 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
Como dije, no tengo el privilegio suficiente para hacer algo como sudo apt-get install gcc
, tengo que instalarlo desde la fuente.
¡Cualquier ayuda para solucionar el problema será felizmente aceptada!