講者:黃丰嘉
完整版:
sudo apt-get install ubuntu-desktop
精簡版:
sudo apt-get install --no-install-recommends ubuntu-desktop
https://www.arthurtoday.com/2012/11/ubuntu-server-install-unity-gui.html
https://www.arthurtoday.com/2012/11/ubuntu-server-install-unity-gui.html
poweroff
http://blog.xuite.net/yh96301/blog/342227672-Ubuntu+16.0.4%E6%96%B0%E5%A2%9E%E4%B8%AD%E6%96%87%E8%BC%B8%E5%85%A5%E6%B3%95-%E6%96%B0%E9%85%B7%E9%9F%B3%E8%BC%B8%E5%85%A5%E6%B3%95
sudo apt-get update
sudo apt-get install firefox
firefox
sudo add-apt-repository ppa:notepadqq-team/notepadqq
sudo apt-get update
sudo apt-get install notepadqq
notepadqq
https://magiclen.org/notepadqq/
sudo apt-get install rar
壓縮:rar a FileName.rar
解壓縮:rar e FileName.rar
# 查IP
ipconfig (windows)
ifconfig (linux)
# 利用 hfs 下載檔案
wget 192.168.254.1/upload/1.png
http://mropengate.blogspot.com/2015/08/mvcdjangomtv.html
myproject 代換為你所想命名的"資料夾名稱"
~$ mkdir myproject_test
~$ cd myproject_test
venv 虛擬環境套件
~/myproject_test$ sudo apt-get install python3-venv
~/myproject_test$ python3 -m venv py3env
~/myproject_test$ source py3env/bin/activate
出現 (py3env) --> 成功
關閉虛擬環境:
~/myproject_test$ deactivate
(py3env) 消失了~
若要安裝 Django 的某個特定版本
pip install Django==1.9.10
pip install Django
~/myproject_test$ pip install Django==1.9.10
~/myproject_test$ pip install --upgrade pip
檢查當前的 Django 版本
~/myproject_test$ pip freeze
把一個 project 專案 想像成 一個網站
一個 project 可包含多個 app
project_chia 代換為 你所想命名的"資料夾名稱"
. 代表 在當下的位置
myproject
manage.py
project
_init_.py
settings.py
urls.py
wsgi.py
~/myproject_test$ django-admin startproject project .
db.sqlite3
等會兒建立
py3env
# 配合 python manage.py runserver 0.0.0.0:8000
# 讓其他電腦可直接連到此 web server,以瀏覽網站
ALLOWED_HOST = ['*',]
# 以下 app 是 Django 內建的 app ,
# 亦即"一個 project 可包含多個 app" の app
INSTALLED_APPS = [
'django.contrib.admin', #後台管理系統
'django.contrib.auth', #權限的管控
'django.contrib.staticfiles', #我們要建立static資料夾
...
]
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
#DjangoTemplates-->我們要建立Templates資料夾
'DIRS': [os.path.join(BASE_DIR,'templates')],
#定義templates的路徑,它是一個list
'APP_DIRS': True,
#當我們以後在project底下建立app之後,
Django會自動探索app底下是否有templates的資源
...
},
]
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
#sqlite3是Django裡預設的資料庫
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
#最後會產生db.sqlite3的檔案
}
}
LANGUAGE_CODE = 'zh-Hant'
TIME_ZONE = 'Asia/Taipei' #時區:世界標準時間 改為--->台北
STATIC_URL = '/static/'
STATICFILES_DIRS=[
os.path.join(BASE_DIR,'static'),
]
#存取靜態資源(CSS, JavaScript, Images)
為 project 建立專屬資料庫
~/myproject_test$ python manage.py migrate
myproject
manage.py
project
_init_.py
settings.py
urls.py
wsgi.py
db.sqlite3
出現了
py3env
myproject
db.sqlite3
project
manage.py
app
migrations
(資料夾)
_init_.py
admin.py
test.py
models.py
views.py
py3env
~/myproject_test$ python manage.py startapp app
apps.py
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'app',
]
~/myproject_test$ python manage.py runserver
~/myproject_test$ python manage.py createsuperuser
~/myproject_test$ python manage.py runserver
請大家準備好自己的個人網頁~
準備開始囉!
<!DOCTYPE html>
<html>
<head>
<title>Sam's page</title>
<link rel="stylesheet" type="text/css" href="myStyle.css">
</head>
<body>
<div class="content">
<h1>Sam 的個人網頁</h1>
<h2 id="mySelfie">我的大頭貼</h2>
<img src="pictures/chocolate.png" style="width:300px;">
<h2 id="whoIsI">我是誰?</h2>
<p>
名字: 楊平<br>
系級: 圖資四<br>
就讀學校: <a href="http://www.fju.edu.tw/">輔仁大學</a>
</p>
<h2 id="mySkill">我的專長</h2>
<ol>
<li>講幹話</li>
<li>寫程式</li>
<li>彈bass</li>
</ol>
<h2 id="myHabbit">我的興趣</h2>
<ul>
<li>聽音樂</li>
<li>吃</li>
<li>睡</li>
</ul>
</div>
</body>
</html>
範例:Sam的個人網頁
myproject
db.sqlite3
project
manage.py
templates
(資料夾)
app
py3env
from django.shortcuts import render
def index(request):
return render(request,'sam.html',locals())
from django.conf.urls import url
from django.contrib import admin
from app.views import index #新增
urlpatterns = [
url(r'^admin/', admin.site.urls), # 開啟後台管理介面
url(r'^index/', index), #新增
]
myproject
db.sqlite3
project
manage.py
static
(資料夾)
templates
(資料夾)
app
py3env
css
img
[方法二] (有彈性的方式)
<link href="{% static 'css/bootstrap.min.css' %}" rel="stylesheet">
[方法一] (寫死的方式)
<link href="static/css/bootstrap.min.css" rel="stylesheet">
{% load staticfiles %}
請修改成
<img src="{% static 'images/ball.png' %}" />
原始圖片路徑:
<img src="images/ball.png" />
(py3env) ~/myproject_test$ python manage.py runserver