목록2024/07/18 (3)
AI·빅데이터 융합 경영학 Study Note
vscode 터미널에서 1. 클로닝 하기(langchain_env) root@8c14869ce6aa:~/LLM_Bootcamp# git clone https://github.com/2024-summer-LLM-Bootcamp/business_card.gitCloning into 'business_card'... remote: Enumerating objects: 13, done. remote: Counting objects: 100% (13/13), done. remote: Compressing objects: 100% (9/9), done. remote: Total 13 (delta 1), reused 12 (delta 0), pack-reused 0 Receiving objects: 100% (13/..
https://code-angie.tistory.com/15 [Python] pip 패키지 목록 requirements.txt 생성 및 설치 방법개발에 있어서 개발 환경은 매우 중요한 요소이다. 딥러닝 모델을 구성할 때도 pytorch 버전에 따라 명령어가 차이가 나기 때문에 현재 진행하는 프로젝트에 어떤 패키지들이 어떤 버전으로 설치code-angie.tistory.com vscode 터미널에pip freeze > requirements.txt하면 requirements.txt 파일이 생김. 끝
1. 설치2. config 아이디, 패스워드 (pc 명령프롬프트에서는 $ 생략)3. 저장소 클론: 원하는 디렉토리로 이동한 후 다음 명령어를 입력합니다. (디렉토리를 변경하려면 cd 명령어를 사용하세요.)여기서 https://github.com/username/repository.git은 클론할 저장소의 URL입니다. git clone https://github.com/username/repository.git 4. 저장소로 이동: 저장소를 클론한 후, 생성된 디렉토리로 이동합니다.여기서 repository는 클론한 저장소의 디렉토리 이름입니다. cd repository 이제 해당 저장소의 파일을 로컬 컴퓨터에서 수정하고 관리할 수 있습니다. >> 1. 로컬 저장소 초기화: 터미널이나 커맨드 프롬프..