위 포스팅에서는 이전에 팀원이 만들어놓은 django 파일을 받아와 나의 local에서 web를 실행시켜볼 것이다.
Django의 requirements 패키지들을 설치할 때 이전에 로컬에 설치된 패키지들과 충돌이 일어나지 않도록 가상환경을 생성해줄 것이다.
python3 -m venv /home/gyu/final/web
source web/bin/activate

pip install -r requirements.txt
requiremets.txt 파일안에 있는 패키지들 다운로드. 단, requirements.txt 파일이 해당 폴더 안에 존재해야 함.
git remote add origin git@github.com:리포지토리 주소
git remote -v
git branch
git checkout master
git pull origin master

cd dataground
python manage.py runserver
localhost:8000으로 접속하면 실행중인 web화면을 볼 수 있음