一個基於Django的綜合成績管理系統-------環境配置詳解

葫蘆大王喊我去巡山發表於2019-05-11

一個基於Django的綜合成績管理系統-------環境配置詳解

PART 1 原始碼下載 & 系統準備
原始碼地址:https://github.com/gnemoug/ComPerformance.git
系統環境:win10 64位 ,python2.7 ,mysql 5.6
第一步,從github下載原始碼,如下
在這裡插入圖片描述
第二步,安裝mysql 和python
在這裡插入圖片描述
mysql安裝教程:https://www.cnblogs.com/wanglei-xiaoshitou1/p/9406652.html
在這裡插入圖片描述
這一步密碼填password
安裝anaconda
在這裡插入圖片描述
這一步不要忘記選擇第一個加入環境變數
軟體都安裝好之後,下一步進入環境配置階段。

PART 2環境配置
1.建立資料庫,並匯入sql語句
密碼:password
create database comperformance; # 建立資料庫
use comperformance; # 使用已建立的資料庫
source E://ComPerformance-master/ComPerformance-master/sql/comperformance.sql;
在這裡插入圖片描述
2.python配置
pip install pymysql
pip install django1.3.1
pip install django-grappelli
2.3.8
pip install pillow
pip_install south==0.7.4

在_init_.py中新增如下兩句:
在這裡插入圖片描述
PART 3 系統展示
在這裡插入圖片描述
在瀏覽器中輸入網址:http://127.0.0.1:8000/
在這裡插入圖片描述
賬號密碼是 guomeng guomeng

在這裡插入圖片描述這樣就OK了。

相關文章