🔥 에러문
root@ubuntu:/home/root1/Downloads/Python-2.6.5# ./configure –prefix=/opt/python2.65 –with-threads –enable-shared
configure: error: invalid variable name: –prefix
root@ubuntu:/home/root1/Downloads/Python-2.6.5# ./configure –prefix=/opt/python2.65 –with-threads –enable-shared
configure: error: invalid variable name: –prefix
root@ubuntu:/home/root1/Downloads/Python-2.6.5#
root@ubuntu:/home/root1/Downloads/Python-2.6.5#
root@ubuntu:/home/root1/Downloads/Python-2.6.5#
root@ubuntu:/home/root1/Downloads/Python-2.6.5# ./configure –-prefix=/opt/python2.65 –with-threads –enable-sharedconfigure: error: invalid variable name: –-prefix
root@ubuntu:/home/root1/Downloads/Python-2.6.5# ./configure -prefix=/opt/python2.6.5 -with-threzds -enable-shared
checking for --enable-universalsdk... no
checking for --with-universal-archs... 32-bit
checking MACHDEP... linux5
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: no acceptable C compiler found in $PATH
See `config.log' for more details.
🔥 해결 방안
컴파일러를 설치해준다.
apt -y install gcc
이후 다시 원하는 명령어 실행 시 제대로 동작하는 것을 확인한다.
./configure –prefix=/opt/python2.65 –with-threads –enable-shared
'CS & Reversing' 카테고리의 다른 글
암호학 - 해시 함수 (0) | 2023.01.16 |
---|---|
리눅스 방화벽/ iptable, ufw, firewall (0) | 2022.10.01 |
[정보보안] 버퍼 오버 플로우(BOF) 개념, 원리, 대응방안 (0) | 2022.03.06 |
[정보보안] Iptable 명령어 이해 (0) | 2022.03.05 |
[정보보안] etc/passwd, /etc/shadow에 대한 이해 (0) | 2022.03.05 |