1107 TIL

looggi·2022년 11월 7일
1

스파르타 내배캠 AI-3

목록 보기
57/130

🎈 프로젝트 6일차

🎁 오류

  • pip install -r requirements.txt 실행 오류
    실행자체에 오류가 나는 건 아닌데 리스트에 있는 패키지들이 계속 설치가 안됐다고 나옴
    이번엔 설치되지 않은 패키지가 많진 않아서 일일이 다 직접 설치해줬지만 다음엔 이렇게 해봐야지
    ➡ pip bug는 install-time dependency가 있는 경우 발생할 수 있다 (when you run pip install -r requirements.txt pip will try to directly install all the required packages listed one by one from top to bottom. Sometimes the dependency is listed above the package it depend upon.)
    ➡ 먼저 설치해야하는 패키지를 따로 pip install로 설치해주고 이후에 requirements.txt를 설치해준다
    ➡ 설치가 안됐던 패키지를 파일의 가장 하단으로 이동시킨다
    ➡ 이러면 다음부터는 같은 오류가 발생하지 않겠지??
    참고) 위에서부터 한줄씩 읽어내려가면서 패키지 하나씩 설치하는 코드
    cat requirements.txt | sed -e '/^\s*#.*$/d' -e '/^\s*$/d' | xargs -n 1 python -m pip install
  • MIME type
    .json - JSON 포맷 - application/json
    .js - JavaScript - text/javascript
    .css - CSS - text/css
profile
looooggi

0개의 댓글