Troubleshooting
[python] mod_wsgi 설치시 error: Python.h: No such file or directory
WSGI(Web Server Gateway Interface)란? => 서버와 웹 애플리케이션의 인터페이스를 위한 파이선 프레임워크다. 즉, 웹서버(Apache)와 Flask 어플리케이션을 연동해주기 위한 프레임워크이다. - 다운을 받고 $ wget https://github.com/GrahamDumpleton/mod_wsgi/archive/3.5.tar.gz - 압축을 푼 다음 $ tar -zxvf 3.5.tar.gz - 폴더에 들어가서 $ cd mod_wsgi-3.5 - 아파치의 빌드툴인 apxs의 경로를 설정해주고 - 필자와 같이 기본 python 버전을 사용하지 않을꺼라면 꼭 python경로를 설정해줘야 한다! (중요) $ ./configure --with-apxs=/~~~/apps/apache/..
WSL 설치시 "Error: 0x80370102 필요한 기능이 설치되어 있지 않아 가상 머신을 시작할 수 없습니다."
0. 우선 Windows 기능을 살펴보는 창으로 찾아간다. 제어판 -> 프로그램 -> 프로그램 및 기능 -> Windows 기능 켜기/끄기 1. Linux용 Windows 하위 시스템 기능 켜기 2. 가상 머신 플랫폼 기능 켜기 3. Hyper-V 기능 켜기 4. BIOS 에서 가상환경 설정 활성화로 바꾸어주기 해당 내용은 BIOS에 따라 다르니, 구글링.... ex) ASUS : 부팅후 BIOS 진입(DEL 키 연타) 하여 Advanced -> CPU Configuration -> Intel (VMX) Virtualization Technology
go make 실행시 cc1: error: unrecognized command line option "-fno-lto"
원인 : gcc 버전이 낮음 조치 : gcc 버전 업 참고 : https://sipro.tistory.com/44
go build 실행시 go: go.mod file not found in current directory or any parent directory; see 'go help modules'
에러화면 조치방법 go env -w GO111MODULE=auto
parsing YAML file /etc/prometheus/prometheus.yml: yaml: line 8: did not find expected key"
# 출처 : https://groups.google.com/g/prometheus-users/c/hVwDPmjcXtg?pli=1 Unable to load configuration file to run prometheus Hi all, I am trying to run prometheus, and I am having the following error: "Error loading config couldn't load configuration (--config.file=/etc/prometheus/prometheus.yml): parsing YAML file /etc/prometheus/prometheus.yml: yaml: line 8: did not find expected key" My confiu..
pip 설치시 - E: Unable to locate package python3-pip
조치방법 : 아래 3줄 실행 sudo add-apt-repository universe sudo apt-get update sudo apt-get install python3-pip .....중략..... .....중략.....