Python 入門級報錯處理
問題1:Missing parentheses in call to 'print'
原因:因為Python2.X和Python3.X不相容。
我安裝的是Python3.X,但是我試圖執行的卻是Python2.X 的程式碼。
所以上面的語法在python3中是錯誤的。在python3中,你需要將print後面的語句加括號,正確的寫法:
print ("hello world")
問題2:建立專案報錯,django-admin startproject sundyblog
File "c:\users\andy\appdata\local\programs\python\python35-32\lib\site-packages\django\utils\html.py", line 16, in <module>
from .html_parser import HTMLParser, HTMLParseError
File "c:\users\andy\appdata\local\programs\python\python35-32\lib\site-packages\django\utils\html_parser.py", line 12, in <module>
HTMLParseError = _html_parser.HTMLParseError
AttributeError: module 'html.parser' has no attribute 'HTMLParseError'
原因:HTMLParseError在pythons3.5已經沒有了
解決方法:
方法1:將python版本回退到3.3或3.4
方法2:升級django版本
>pip3 install django==1.8 ##升級django版本
C:\Users\andy>django-admin startproject sundyblog ##再次執行,無報錯
問題3: 使用 ImageField 欄位建表報錯
C:\Users\andy\sundyblog>python manage.py makemigrations
SystemCheckError: System check identified some issues:
ERRORS:
blog.Article.portal: (fields.E210) Cannot use ImageField because Pillow is not installed.
HINT: Get Pillow at or run command "pip install Pillow".
解決:C:\Users\andy\sundyblog>pip install -i Pillow
Looking in indexes:
Collecting Pillow
Downloading
100% |████████████████████████████████| 1.7MB 351kB/s
Installing collected packages: Pillow
Successfully installed Pillow-5.4.1
You are using pip version 19.0.1, however version 19.0.2 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command.
C:\Users\andy\sundyblog>python manage.py makemigrations
Migrations for 'blog':
0001_initial.py:
- Create model Article
- Create model Author
- Add field autor to article
C:\Users\andy\sundyblog>
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31383567/viewspace-2625293/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Zend Framework 入門(3)—錯誤處理Framework
- Python 影像處理 OpenCV (1):入門PythonOpenCV
- Python影象處理庫Pillow入門Python
- 匯入專案@override 報錯處理IDE
- Python 資料處理庫 pandas 入門教程Python
- Extjs報錯處理JS
- DG報錯的處理
- errpt報錯處理
- Python錯誤處理Python
- Python爬蟲入門(5):URLError異常處理Python爬蟲Error
- Gulp壓縮報錯處理
- rails gem報錯的處理AI
- Javascript程式碼報錯處理JavaScript
- 各種報錯處理方法
- Python基礎入門(7)- Python異常處理機制Python
- 不足400元 A/I入門級處理器對比測試
- PostgreSQL處理JSON入門SQLJSON
- Redux 入門 -- 處理 async actionRedux
- [Python影象處理] 一.影象處理基礎知識及OpenCV入門函式PythonOpenCV函式
- Python入門學習之異常處理機制Python
- 跟我學Python影像處理丨帶你入門OpenGLPython
- Python錯誤處理和異常處理(二)Python
- Python處理驗證碼第一篇(pytesser初探及報錯處理)Python
- Too many open files報錯處理
- Mysql自動處理同步報錯MySql
- yum groupinstall報錯,處理方法
- ORA-02429 報錯處理
- mysql複製報錯案例處理MySql
- Python入門學習 之 永久儲存、異常處理Python
- Python 偵錯程式入門Python
- Java入門教程四(字串處理)Java字串
- 【Python】升級python後pip報錯Python
- 批處理的聊天程式報錯求救!!!!!
- Java入門教程十一(異常處理)Java
- 自然語言處理NLP快速入門自然語言處理
- 自然語言處理(NLP)入門指南自然語言處理
- 線上MYSQL同步報錯故障處理總結MySql
- ORA-1654報錯處理一則