아 결국 미룸...
🤓 .gitignore 파일 만들어서 푸쉬해보기
https://gmlwjd9405.github.io/2017/10/06/make-gitignore-file.html
- 이미 add 가 되었거나 commit이 된 파일은 .gitignore에 있어도
🤓 미뤄놨던 pip freeze 정리하기
- 가상환경 만들기
python3 -m venv myvenv
- 가상환경 활설화하기(venv가 있는 폴더에서!)
python3 source venv/bin/activate
- 가상환경에 장고 패키지 설치하기
pip install django
- 설치한 패키지 저장하기
pip freeze > requirements.txt
- requirements.txt에 설치된 패키지 리스트 한번에 설치하기(requirements.txt 파일이 저장된 곳에서 해야함...)
pip install -r requirements.txt
🍒파일 경로 확인을 잘하자!! venv 활성화도 requirements.txt로 패키지 설치하는 것도 manage.py명령어 사용할 때도!
🍒한번도 커밋하지 않은 리포는 브랜치를 생성할 수 없다
ㅠㅠ 다음에는 꼭 하세여