記錄一些 學習python 的過程
1. 初始學習
@2023年10月6日
今天開始學習python 了
遇到好多困難但是都乙個個解決了
安裝pyhton
安裝setuptools
安裝pip
最開始選擇的最新的3.3.x 結合 django 1.5 發現很多問題 又換到2.7.x 先安裝 mysqldb 然後安裝django
@2023年10月8日 23:42:55
在使用django 的 imagefields 碰到問題:
問題 to use imagefields, you need to install the python imaging library. get it at
如果 發現 報錯unable to find vcvarsall.bat 參見blog 解決
然後執行:
setup.py install build --compiler=mingw32
可惜我這幾種方案都沒有解決啊~~ 只有安裝vs了,瞬間有了放棄win8投身到linux 懷抱中去了的衝動。
參考 :
檢視環境變數 :vs110comntools --> e:\program files (x86)\microsoft visual studio 11.0\common7\tools\
vcvarsall32.bat 就在這個目錄下
新增環境變數: vs90comntools ---> %vs110comntools%
執行 setup.py install 成功編譯成功了。
2023年10月10日 18:44:50 到現在這個問題解決了~~~ 哈哈
通讀原始碼會有更多收穫啊~~~ 現在還看得不是很懂啊~~~ 加油學習 go~~~go~~~
@2023年10月11日 00:32:33
在 setting.py 檔案裡面設定
media_root , media_url , static_root , static_url
這些變數是什麼意思呢可以參考
客戶上傳的url新增這些配置
1from django.conf import
settings
2from django.conf.urls.static import
static
34 urlpatterns = patterns('',5
#... the rest of your urlconf goes here ...
6 ) + static(settings.media_url, document_root=settings.media_root)
伺服器靜態資源檔案 url 配置 比如 css js 用到的這些
1from django.conf import
settings
2from django.conf.urls.static import
static
34 urlpatterns = patterns('',5
#... the rest of your urlconf goes here ...
6 ) + static(settings.static_url, document_root=settings.static_root)
當遇到不明白的地方多穀歌多看官方doc
python學習記錄
python 3 整除,複數表示,slice,range,pass關鍵字,函式用引數名呼叫,函式的 arg和 arg,預設引數,unpacking argument lists,sequence 型別 list,set tuple,dictionary,queue,stack loop相關 enum...
python學習記錄
python函式記錄 修飾符作用就是表示 下面的值或者函式作為 後面函式的引數 返回值由 後面的函式返回 map 接收乙個函式和乙個序列,然後保留函式返回的結果的序列 reduce 接收乙個函式和乙個序列 函式結果為乙個值,運算過程就是從序列的第乙個值開始傳給函式,返回結果再次傳入函式,直到最後得到...
python學習記錄
函式的作用 按照key對迭代器iterable進行分組 函式的返回 tuple,其中第乙個元素是groupby後的鍵值,第二個元素是乙個迭代器,包含那些被groupby的物件。第二個引數key是可選的,如果預設,那就按照iterable的每個元素分組。如果不預設,那應該是乙個函式,將iterable...