리눅스 썸네일형 리스트형 [linux] Cargo, the Rust package manager, is not installed or is not on PATH 에러 해결 개요transformer나 등등 패키지를 설치할 때 이런 에러를 만나는 경우가 있다.python의 버전을 바꾸거나, pip을 업그레이드 했을 때 해결이 될 수도 있지만 안 될 경우에는 rust를 설치해야 한다.에러ERROR: Command errored out with exit status 1: command: [내 경로] cwd: [내 경로]Complete output (6 lines):Cargo, the Rust package manager, is not installed or is not on PATH.This package requires Rust and Cargo to compile extensions. Install it throughthe system's package manager .. 더보기 [linux][vi/vim] html, xml 파일 예쁘게(pretty) 보는 명령어 개요html, xml 파일의 경우, indent로 나누어지지 않으면 보기 불편하다.그런 파일을 적절하게 들여쓰기 해줘서 예쁘게 보기 위한 vi/vim 명령어이다. 내용하단 명령어는 모두 적용하고자 하는 파일의 비주얼 모드(ESC)에서 진행한다.명령어 입력:%s/]*>/\r&\r/g명령어 입력:g/^$/d전체 선택shift+v+gg= 두 번 누르기 더보기 [linux][jq] jq - null 값인 경우 제외하고 출력하기 개요command line에서 json 파일에서 특정 요소를 출력하려고 할 때, null 값은 제외하고 출력하는 명령어임. Commandcat {파일명} | jq -r '.output.preds | select( . !="")'cat으로 json 파일을 하나 연다.jq에서 출력할 요소를 입력(.output.preds)하고 select로 조건(select(. ~= ""))을 명시한다. etc.처음에 조건으로 null을 넣어서 다음과 같이 입력하니 안 됐음- jq -r '.output.preds | select( . !=null)' ref.https://unix.stackexchange.com/questions/553338/jq-filter-for-only-null-values 더보기 이전 1 다음