Dev/Etc
Django 개발을 위한 IntelliJ 환경설치
hau
2018. 5. 2. 14:02
728x90
# ※Windows 설치 기준
#1. Python 3.0 설치
https://www.python.org/downloads/
#2. Python Virtualenv
> pip install virtualenv > virtualenv venv > call venv/scripts/activate (venv) > pip list //화면 |
#3. Django 설치
(venv) > pip install django==1.8 (venv) > pip install --upgrade django
|
#4. IntelliJ Plugin
Restart 후, 재설정 혹은 신규 project 생성 시 module 추가 |
*참고 link
http://blog.eomdev.com/python/2016/07/01/install.html
http://dgkim5360.tistory.com/entry/python-virtualenv-on-linux-ubuntu-and-windows
728x90