vscode에서 파일 실행해봐도 동작을 안할 때 해결방법 1. restricted mode인지 확인하고 trust 모드로 바꿔주기 왼쪽 하단 restircted mode 눌러서 trustmode로 바꾸기 2. vscode 재설치
개발환경
서버랑 로컬 다 code로 하나의 모니터로 작업하다 보니 여닫을 때마다 헷갈려서 서버용 vscode의 색상 테마를 변경하여 사용함. 1. vscode의 setting 들어가기 좌측 상단 File -> 메뉴 하단 Preferences -> Settings 2. ssh 연결된 서버 선택하기 workspace 선택시 ==> 현재 code의 테마 변경 remote(서버) 선택시 ==> 앞으로 서버에 ssh code로 연결할 때마다 적용할 테마 변경 User ==> code 자체의 테마 변경(전역설정) 3. color theme 검색하여 원하는 테마로 변경하기 적당히 다른색으로 설정
github 로그인 시 토큰을 발행받아 적용해야 함. 해결) 기본적인 설정 해주기 git config --global user.name 깃헙아이디 git config --global user.email 깃헙이메일 여기서부터가 토큰 발행 깃헙 홈페이지에 로그인하여 아래 순서에 따라 토큰을 발행받기 https://github.com/ GitHub: Let’s build from here GitHub is where over 100 million developers shape the future of software, together. Contribute to the open source community, manage your Git repositories, review code like a pro, tra..
우분투에 서버를 열어서 ssh + vscode 조합으로 사용하고 있는데, 미디어 보는데 한계가 있어서👊 ssh 대신 좀 느려도 rdp 화면공유로 서버 사용하고자 함. tigervnc 같은 패키지를 설치해서 이것저것 설정해줘야 하는 방법도 있지만, 우분투 22.04에서는 기본 remote sharing 옵션에서 rdp를 제공해 줌. vnc와 rdp차이 ref) https://selfish-developer.com/entry/VNC%EC%99%80-RDP VNC와 RDP 원격 데스크톱을 연결하는 프로토콜은 여러 가지가 존재하는데 이중 대표적인 방법이 VNC와 RDP다. 두 프로토콜 모두 단순히 커맨드 라인 창만 띄우는 ssh를 넘어서서 원격 PC의 그래픽 인터페이스 selfish-developer.com 설..
0. 기본 업데이트 sudo apt-get update 1. conda 설치 파일(sh) 다운받고 설치 아나콘다 홈페이지에 들어가서 본인 OS에 맞는 최신 버전을 다운받기 https://www.anaconda.com/products/distribution#Downloads Anaconda | Anaconda Distribution Anaconda's open-source Distribution is the easiest way to perform Python/R data science and machine learning on a single machine. www.anaconda.com 안되면 아래 링크~ https://www.anaconda.com/ 2. 다운받은 파일 실행하여 설치 cd ~/Down..
현재 사용중인 터미널에서 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 주소에 변경할 계정이름, 암호 등록
import os os.system('pip install torch') 하면 됨
우분투 1. openssh 설치 sudo apt-get install openssh-server 2. config 파일 설정 sudo vi /etc/ssh/sshd_config - 설정해주어야 하는 값 포트번호 : 22 권장 X, 10000이상의 임의의 숫자로 설정 ex) #Port 22 -> Port 12345 permitrootlogin no : yes해도 되지만 보안상의 이유로 추천 X - 설정 후엔 꼭 service ssh restart 해서 재시작해줘야됨 3. 방화벽 실행 후 서버포트 열기 sudo ufw enable sudo ufw allow #설정한포트번호 ------------------------------------ 참고 #현재 상태 확인 sudo ufw status #deny하기 su..