Python/Django

Python/Django

Django 버전 업데이트

tehon:~/workspace $ django-admin --version 1.9$ django-admin --version현재 버전 확인 tehon:~/workspace $ sudo pip install --U django Usage: pip install [options] ... pip install [options] -r ... pip install [options] [-e] ... pip install [options] [-e] ... pip install [options] ... no such option: --U최신 버전으로 업데이트$ sudo pip install --U django

Python/Django

새 app 생성

tehon:~/workspace $ django-admin startapp durango django-admin startapp 이름

Python/Django

Django admin 유저 생성

tehon:~/workspace $ python manage.py createsuperuser Username (leave blank to use 'ubuntu'): admin Email address: 내 이메일 Password: Password (again): Superuser created successfully.슈퍼바이저최고관리자 계정 생성 $ python3 manage.py createsuperuser

Python/Django

cloud9 으로 쟁고프로젝트 서버 가동

tehon:~/workspace $ python manage.py migratesqlite DB 생성 tehon:~/workspace $ python manage.py runserver $IP:$PORT서버가동

Python/Django

postgresql

tehon:~/workspace $ createdb mydb createdb: could not connect to database template1: could not connect to server: Connection refused Is the server running locally and accepting connections on Unix domain socket "/var/run/postgresql/.s.PGSQL.5432"?mydb라는 데이터 베이스를 생성하고 싶었지만PostgreSQL 서버가 멈춰있다는 것을 암tehon:~/workspace $ sudo service postgresql start * Starting PostgreSQL 9.3 database server p [ OK ] ..

개발세탁기
'Python/Django' 카테고리의 글 목록 (2 Page)