Part 1: 設定環境,發射火箭 - amychenmit/misdj002 GitHub Wiki
課前準備:
- 安裝 Python & git —> https://djangogirlstaipei.herokuapp.com/tutorials/installation/?os=osx
#確認版本 $python3 , 確認ok就可以 $quit() - 安裝 git —> https://git-scm.com/book/en/v2/Getting-Started-Installing-Git
#確認是否有 $git —version - 註冊 github 帳號 —> https://github.com/
- 安裝 編輯器 visualstudio —> https://code.visualstudio.com/Download
pwd
ls -l
#確認當前位置
mkdir misdj
cd misdj
#建立misdj資料夾
pwd
ls
#確認你的工作目錄,而且是空的。
路徑延伸學習:
https://djangogirlstaipei.herokuapp.com/tutorials/command-line/?os=osx
建立虚擬環境
python3 -m venv venv
ls
#建立虚擬環境,並確認裡面只有一個 venv 資料夾
. venv/bin/activate
#啟動虛擬環境 —→ Q.這個虛擬環境是要做啥用?
這是一個獨立的資料夾,並且裡面裝好了特定版本的 Python,以及一系列相關的套件。
不同的應用程式可以使用不同的虛擬環境。
https://docs.python.org/zh-tw/3/tutorial/venv.html
依照 venv 資料夾的位置,要下不同的指令
. ../venv/bin/activate
OR
source ../venv/bin/activate
安裝 Django
pip install django
#使用 pip 安裝 python module 'Django'
pip install —upgrade pip
#更新 pip
tree misdj
#OR
cd misdj
pwd
#確定檔案狀態&位置 /Users/chenmeijun/misdj/misdj
下載 django 教學會用到的 misdj 資料夾
django-admin startproject misdj
開啟 Server
./manage.py runserver
#關閉 $Control+C
至 http://127.0.0.1:8000/ 應該就可以看到火箭發射了!
至編輯器轉換語言
選取資料夾:/Users/chenmeijun/misdj/
edit settings.py
LANGUAGE_CODE = ‘zh-hans’
#繁體中文: hant
在本地的網站就完成了,這個 Terminal 就會顯示 Server 的資訊。