問題1:Missing parentheses in call to 'print'html
緣由:由於Python2.X和Python3.X不兼容。
我安裝的是Python3.X,可是我試圖運行的倒是Python2.X 的代碼。
因此上面的語法在python3中是錯誤的。在python3中,你須要將print後面的語句加括號,正確的寫法:
print ("hello world")python
問題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'django
緣由:HTMLParseError在pythons3.5已經沒有了app
解決方法:ide
方法1:將python版本回退到3.3或3.4htm
方法2:升級django版本
>pip3 install django==1.8 ##升級django版本
C:\Users\andy>django-admin startproject sundyblog ##再次執行,無報錯blog
問題3: 使用 ImageField 字段建表報錯ip
C:\Users\andy\sundyblog>python manage.py makemigrations
SystemCheckError: System check identified some issues:it
ERRORS:
blog.Article.portal: (fields.E210) Cannot use ImageField because Pillow is not installed.
HINT: Get Pillow at https://pypi.python.org/pypi/Pillow or run command "pip install Pillow".pip
解決:C:\Users\andy\sundyblog>pip install -i https://pypi.douban.com/simple/ Pillow
Looking in indexes: https://pypi.douban.com/simple/
Collecting Pillow
Downloading https://pypi.doubanio.com/packages/0f/fe/0979c8d6fa0c986e4603e5396904945b44f93ff9e346ee5ffadc7487cff6/Pillow-5.4.1-cp35-cp35m-win32.whl
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>