본문 바로가기

반응형

hacking or software engineering skills/linux

(16)
ModuleNotFoundError: No module named 'open_clip' 에러 해결 pip install open_clip_torch
[에러] AttributeError: module 'streamlit' has no attribute 'set_page_config' pip install streamlit==1.12.2 version을 낮춘다.
[에러] 우분투 jupyter lab 설치 에러, jupyter not found, 환경 설정 하기 문제점 해결 export PATH="$HOME/.local/bin:$PATH" https://stackoverflow.com/questions/57677481/jupyter-command-jupyter-lab-not-found Jupyter command `jupyter-lab` not found I have tried to install jupyter lab on my Kubuntu machine. If I install jupyter lab with 'pip3 install jupyter jupyterlab' the command 'jupyter notebook' works completly fine. But if I try to run ' stackoverflow.com
[centos] dlib install error, C++11 is required to use dlib, but the version of GCC you are using is tooold and doesn't support C++11. You need GCC 4.9 or newer. 에러 해결법 문제점1 문제점2 https://hidden-loca.tistory.com/6 [Python] dlib 설치하기. 2021. 03. 17 수정 근 수개월 동안 가장 많은 페이지 방문이 있었지만, 내용상 대충대충 써 내린 부분이 많아 새로 수정. - 가상환경생성 dlib을 설치할 가상환경을 만들었습니다. 가상환경이름은 dlib hidden-loca.tistory.com 위 방법대로 했는데도 안됐다. C++11 is required to use dlib, but the version of GCC you are using is too old and doesn't support C++11. You need GCC 4.9 or newer. conda install dlib 위 명령어는 안됨... 해결책 conda..
[centos] No decoder for stream #0:0, filtering impossible, Decoder (codec av1) not found for input stream #0:0 ffmpeg 를 이용하여 centos에서 video (확장자 mp4)의 이미지를 추출하는 작업을 시도했는데.. 에러 발생! ffmpeg -i videoplayback\ -\ taeyeon.mp4 taeyeon/video-frame-%d.png ffmpeg version 문제인가? sudo yum install epel-release sudo yum localinstall --nogpgcheck https://download1.rpmfusion.org/free/el/rpmfusion-free-release-7.noarch.rpm sudo yum install ffmpeg ffmpeg-devel 버전 업그레이드 하니 다른 에러 발생!! # Decoder (cod..
scp 파일 전송 scp -P 포트번호 보낼파일경로 컴퓨터이름@아이피주소:저장될경로 ex) scp -P 22 SMPL_python_v.1.1.0.zip remo-server1@125.131.68.75:/home/remo-server1/Desktop/dhkim 파일이 잘 전송되는 것을 볼 수 있다.
[리눅스] 파일명, 파일 확장자 일괄 변경 for f in *.예전확장자; do mv -- "$f" "${f%.예전확장자}.새확장자"; done zetawiki.com/wiki/%EB%A6%AC%EB%88%85%EC%8A%A4_%ED%8C%8C%EC%9D%BC_%ED%99%95%EC%9E%A5%EC%9E%90_%EC%9D%BC%EA%B4%84%EB%B3%80%EA%B2%BD 리눅스 파일 확장자 일괄변경 - 제타위키 다음 문자열 포함... zetawiki.com
[linux] ubuntu에서 2TB 이상 HDD 마운트 시키기 1. 디스크 정보 확인 fdisk -l 3.65 TB HDD가 보인다. /dev/sda이다. (아래부터 이 위치로 입력하면 된다.) 2. parted 이용하여 분할하기 sudo parted /dev/sda 입력 mklabel 입력 후 gpt 내부 데이터가 모두 사라진다는 메세지가 출력 됨 yes 입력 unit GB 입력하여 단뒤 변환 print 입력하여 용량 확인 mkpart primary 0GB 4001GB 입력(우측엔 본인 용량 입력하면 됨) q 입력하여 커맨드로 돌아옴 다시 fdisk -l을 해본다. 3. 파티션 포맷 mkfs.ext4 /dev/sda1 중간에 정보 입력하는 부분은 그냥 엔터 쳐서 무시하고 넘어가도 됨 5. UUID 확인 sudo blkid 입력하여 UUID 확인 후 복사해두기 6...

728x90
반응형