dryben / daily

무슨 생각을 해... 그냥 하는거지
0 stars 0 forks source link

Django 프로젝트 생성 #3

Open dryben opened 5 years ago

dryben commented 5 years ago

VirtualEnv 구성

https://developer.mozilla.org/ko/docs/Learn/Server-side/Django/development_environment

virtualenv..

sudo pip3 install virtualenvwrapper

vi ~/.bash_profile

export WORKON_HOME=$HOME/.virtualenvs
export VIRTUALENVWRAPPER_PYTHON=/Library/Frameworks/Python.framework/Versions/3.6/bin/python3
export PROJECT_HOME=$HOME/Devel
source /Library/Frameworks/Python.framework/Versions/3.6/bin/virtualenvwrapper.sh

source ~/.bash_profile

mkvirtualenv dj_apple

Django 실행

(dj_apple 가상환경에서 계속)

pip3 install django mkdir dj_apple && cd dj_apple django-admin startproject djapplesite cd djapplesite python3 manage.py runserver

April 15, 2019 - 06:21:12
Django version 2.2, using settings 'djapplesite.settings'
Starting development server at http://127.0.0.1:8000/
Quit the server with CONTROL-C.
dryben commented 5 years ago

VSCode를 사용중인데 파이썬 인터프리터(익스텐션)가 가상환경의 패키지를 참조하지 않는다. 위 링크의 내용을 적용하고, 가상환경 터미널에서 VSCode를 실행하면 인터프리터가 잘 연결된다. https://code.visualstudio.com/docs/setup/mac