1.
pythonpicasso
/examples
/keras
-vgg16
/prepare_model
.py
error:
importerror: no module named 'keras'
分析:
如果是已經安裝了keras之後還出現上面bug,很有可能是start了python2的。python2.x和python3.x出現了混亂。
解決方法:
python3picasso
/examples
/keras
-vgg16
/prepare_model
.py
二、valueerror: unknown locale: utf-8
file "/users/wyl/documents/effectmatrix/program/minetest/mcedit-unified-master/env/lib/python2.7/locale.py", line 545, in getdefaultlocale
return _parse_localename(localename)
file "/users/wyl/documents/effectmatrix/program/minetest/mcedit-unified-master/env/lib/python2.7/locale.py", line 477, in _parse_localename
raise valueerror, 'unknown locale: %s' % localename
valueerror: unknown locale: utf-8
解決方法:
1.在.bash_profile檔案中加入
export
lang=
"en_us.utf-8"
export
lc_collate=
"en_us.utf-8"
export
lc_ctype=
"en_us.utf-8"
export
lc_messages=
"en_us.utf-8"
export
lc_monetary=
"en_us.utf-8"
export
lc_numeric=
"en_us.utf-8"
export
lc_time=
"en_us.utf-8"
2.source
使用更新後的內容
source .bash_profile
測試python -c
'import locale; print(locale.getdefaultlocale());'
參考資料1.valueerror: unknown locale: utf-8
2.unknown locale: utf-8解決方法
3.mac 下更新 .bash_profile 檔案
Python常見反爬蟲機制解決方案
1 使用 這種情況最好的辦法就是維護乙個 ip池,網上有很多免費的 ip,良莠不齊,可以通過篩選找到能用的。對於 頻繁點選 的情況,我們還程式設計客棧可以通過限制爬蟲訪問 的頻率來避免被 禁掉。proxies requests import requests response re程式設計客棧que...
CSS常見布局解決方案
瀏覽部落格時,看到一篇部落格 css常見布局解決方案 因為平時在寫 的時候,也會出現很多css布局方面的問題,所以看到這個 文章格外興奮,借鑑他的學習經驗,希望自己以後也可以有所總結。水平居中布局 首先看水平居中 1.margin 定寬 demo 不定寬的水平居中 2.table margin de...
偶發性bug之解決方案
很難重現的bug,找不出問題的原因。確認我測試的是正式的軟體版本,如果不是就先記錄下該問題,然後選擇正式的版本進行測試 開發人員基於嘗試的一次非正規的修改可能會導致不可復現的bug 可以和其它版本進行對比,如果其它的版本沒有類似的問題,就可以去對比這兩個版本之間的區別。可以在另一台計算機上測試一下。...