살면서 가끔 필요한 것 정리(5)
-
[Error] anaconda 설치했는데 conda: command not found 오류
Window 환경 1. 제대로 설치했으면 환경변수 확인 Linux 환경 1. 제대로 설치했으면 ~/.bashrc 맨 마지막줄에 export PATH="여기Anaconda/bin경로따옴표빼고":$PATH 추가하고 source ~/.bashrc 실행 터미널 껐다 켜서 conda list로 확인 2. 그래도 안되면 conda 대신 conda.exe로 실행해보기 ex. conda info -> conda.exe info - 나는 이방법으로 해결
2021.07.15 -
[Error] LINK : fatal error LNK1181: 'C:\Program.obj' 입력 파일을 열 수 없습니다 오류
출처 : https://peeahn.tistory.com/346 LINK : fatal error LNK1181: cannot open input file ‘C:\Program.obj’ 문제가 나타날때 http://tinobox.com/wordpress/c-programming/link-fatal-error-lnk1181-cannot-open-input-file-cprogramobj/ http://www.winasm.net/forum/index.php?showtopic=2034 http://support.microsoft.com/kb/815645 위.. peeahn.tistory.com 환경변수 설정할 때 띄어쓰기가 있으면 발생함 path가 예를들어 C:\Program Files (x86) 라면 시스템변..
2021.06.19 -
py파일에서 리눅스 명령어 실행하기
import os os.system('pip install torch') 하면 됨
2021.05.31 -
터미널 깃 계정 변경
현재 사용중인 터미널에서 git config user.name git config user.email 하여 현재 계정 정보 확인 git config --global user.name 바꿀계정이름 git config --global user.email 바꿀이메일주소 하여 변경 후 git config user.name git config user.email 로 변경 된 계정 정보 확인 마지막으로 윈도우 자격증명 변경하기(아래 출처 참조) 제어판 > 사용자 계정 > 자격 증명 관리 > Windows 자격 증명 >일반 자격 증명 > 일반 자격증명 편집 > git:https://github.com 주소에 변경할 계정이름, 암호 등록 출처 : https://somjang.tistory.com/entry/Git-Gi..
2021.01.20 -
비쥬얼 코드에서 단축키 안먹힐 때
블로그 이전했어요 https://cccaaa.tistory.com/20 비쥬얼 코드(vscode) 에서 단축키 안먹힐 때 출처 : www.clien.net/service/board/kin/13136842 Visual Studio Code에서 주석 단축키 (Ctrl + /) 가 안될때? : 클리앙 안녕하세요, Visual Studio Code를 사용하고 있는데 가끔씩 Ctrl + /키가 작동하지 않아서 왜 그런지 cccaaa.tistory.com 출처 : www.clien.net/service/board/kin/13136842 Visual Studio Code에서 주석 단축키 (Ctrl + /) 가 안될때? : 클리앙 안녕하세요, Visual Studio Code를 사용하고 있는데 가끔씩 Ctrl + /키..
2020.12.20