본문 바로가기

💻 Deep Wide Programming/Django

[⛺️클론코딩] pipenv, Django 설치, 개발환경 구축하기

728x90
반응형

📌앞으로 사용할 Framework

👉django : Prevent "reinventing the wheel"

👉tailwindcss(utility first css framework)

 

 

📌pipenv 설치

pipenv : 장고 설치 시,  pipenv로 설치할 것. pipenv를 이용하면, 버블을 install해준다. global로 다운되지 않고, 버블에 버전별로 다운로드 가능

👉Mac OS/리눅스라면 brew install pipenv 를 이용해 다운로드!

 brew install pipenv

 

👨‍💻 brew가 깔려있지 않다면, 다음의 명령어로 home brew설치
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

 

👉또는 Mac OS/리눅스가 아니라면, 다음과 같은 방법으로 pipenv를 설치할 수 있다. 

pip install --user pipenv

 

 

깔리는 과정에 ..뭔지 모르겠는데 중간중간 맥주 이모티콘이 나옴..ㅋㅋ

터미널에 pipenv를 입력해, 제대로 설치가 잘 되었는지 확인해본다. 

 

 

📌pipenv : 버블생성

👉python3 기반의 버블 생성하기! (why python3? python3에서 잘 작동된다고 명시되어있기 때문)

terminal에서, Documents에 원하는 폴더를 생성해주고(mkdir), 그 폴더 내부에서 다음의 명령어 입력!

pipenv --three

✔ Successfully created virtual environment! 라는 메시지를 발견할 수 있다. 

code . 

해당 가상 환경이 Vs code로 열린다.

👉vscode terminal에서, 다음의 명령어를 통해 버블(개발환경) 안으로 진입한다.

pipenv shell

**버블 안에 들어갈것**

 

👉장고 설치 

pipenv install Django==2.2.5

👉잘 설치되었는지 확인하기

django-admin

 

 

📌 github에서 Repositiory 생성 (해당 링크 복사)

git init
git remote add origin 해당링크 
git add . 
git commit -m "Creating our Env and Installing Django"
touch README.md 
touch .gitignore

 

 

 

gitignore.io

Create useful .gitignore files for your project

www.toptal.com

💫gitignore가 필요한 이유 (다음 포스팅 참고) 👉 lsjsj92.tistory.com/566

728x90
반응형