이 글에서는 주로 Ubuntu 14.04의 Django와 MySQL 환경 배포의 전체 과정은 단계별 설치 단계를 통해 자세히 소개됩니다. 도움이 필요한 친구들은 아래에서 살펴볼 수 있습니다. >간단한 단계(Ubuntu14.04)
1. Python 환경 설정
운영 체제 Ubuntu14.04, Python2.7.6 제공
im@58user:/$ python Python 2.7.6 (default, Oct 26 2016, 20:30:19) [GCC 4.8.4] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>>
2. Build
Django의 현재 버전이 1.11이 되었습니다. 먼저 공식 홈페이지에 가서 Linux용 해당 파일을 다운로드한 후 압축을 풀고 설치하세요(공식 홈페이지 다운로드 주소)
tar xzvf Django-1.11.x.tar.gz cd Django-1.11.x sudo python setup.py install
No <a href="http://www.php.cn/code/8212.html" target="_blank">module<p>
No <a href="http://www.php.cn/code/8212.html" target="_blank">module</a> named setuptools
sudo https://bootstrap.pypa.io/ez_setup.py -O - | sudo python
python setyp.py install"
3. Mysql 설치
실행 명령 중에 루트 비밀번호를 입력하고 확인해야 할 수도 있습니다.
sudo apt-get install mysql-server mysql-client sudo apt-get install libmysqld-dev
sudo apt-get install python-dev sudo wget https://pypi.python.org/packages/source/M/MySQL-python/MySQL-python-1.2.5.zip unzip MySQL-python-1.2.5.zip cd MySQL-python-1.2.5/ sudo python setup.py install
:
> * sudo mysql * mysql -u root -p 然后输入密码
첫 번째 방법으로 mysql을 입력합니다mysql> use mysql;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed
mysql> update user set Password = PASSWORD(‘root') where User ='root';
Query OK, 3 rows affected (0.00 sec)
Rows matched: 3 Changed: 3 Warnings: 0
mysql> exit
5. 새 프로젝트 만들기
결과를 확인할 시간입니다
현재 디렉터리를 Python의 worspace로 전환하고 새 프로젝트 이름을 입력합니다.
im@58user:~/PythonProjects$django-admin.py startproject Hello im@58user:~/PythonProjects$ cd Hello/ im@58user:~/PythonProjects/Hello$ tree ├── Hello │ ├── init.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py └── manage.py
* settings.py:
구성 파일im@58user:~/PythonProjects/Hello$ touch views.py im@58user:~/PythonProjects/Hello$ ls Hello manage.py views.py im@58user:~/PythonProjects/Hello$ tree . ├── Hello │ ├── init.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── manage.py └── views.py 1 directory, 6 files
from django.http import HttpResponse def hello(request): return HttpResponse(“Hello World~!~!”)
from django.conf.urls import url from django.contrib import admin from views import hello urlpatterns = [ url(r'^admin/‘, admin.site.urls), url(r'^hello/‘, hello), ]
서버 시작
에서 실행합니다. 브라우저를 열어 방문 표시 결과를 볼 수 있습니다. python manage.py runserver 0.0.0.0:8080
127.0.0.1:8000/hello/
위 내용은 Ubuntu14.04 환경에서 MySQL과 Django를 배포하는 전체 과정의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!