一. expected an indented block
(小白问题)缩进问题, 报错地方前面要有4个空格
二. module 'urllib' has no attribute 'request'
众所周知,python2.x到3.x的版本中,3.x版本中已经将urllib2、urlparse、和robotparser并入了urllib中,并且修改urllib模块,其中包含5个子模块。
当我们执行
import urllib
html = urllib.request.urlopen('www.baidu.com')
print(html.read())
会报一个错误提示无此方法
这是因为python3特性导致,需要 import urllib.request或用from urllib import request
三. urllib.error.URLError: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:777)>
问题的原因是“SSL: CERTIFICATE_VERIFY_FAILED”
Python 升级到 2.7.9 之后引入了一个新特性,当使用urllib.urlopen(3.x使用urllib.request.urlopen)打开一个 https 链接时,会验证一次 SSL 证书。
而当目标网站使用的是自签名的证书时就会抛出一个 urllib2.URLError(3.x为urllib.error.URLError):的错误消息。
解决方案包括下列两种方式:
1>. 使用ssl创建未经验证的上下文,在urlopen中传入上下文参数
import ssl
context=ssl._create_unverified_context()
print urllib.request.urlopen("https://www.xxx.com/", context=context).read()
2>. 全局取消证书验证
import ssl
ssl._create_default_https_context=ssl._create_unverified_context
print urllib.request.urlopen("https://www.xxx.com/").read()
四:在使用Pycharm(Professional)安装(VIRTUAL ENVIRONMENT环境)好Django后,按照网上的资料用终端运行python manage.py发现会报错:
ImportError: Couldn't import Django
但是直接在项目中运行manage.py是OK的,运行项目时发现这个
注意,在终端中使用python时加上路径,manage.py也加上路径就可以解决这个问题(可以直接在终端中拷贝这行代码)。
五.使用SMTP发送邮件时报错:
ConnectionRefusedError: [Errno 61] Connection refused
原因:本地服务器没开
解决办法(终端运行,1025为端口号,和代码中保持一致):
python -m smtpd -n -c DebuggingServer localhost:1025
六. MySql 使用问题
1. 安装:
所有平台的Mysql下载地址为:MySQL 下载. 挑选你需要的MySQL Community Server版本及对应的平台。
2. 使用:
先 cd /usr/local/mysql/bin 到目录下,修改密码
step 1: SET PASSWORD = PASSWORD('your new password');
step 2: ALTER USER 'root'@'localhost' PASSWORD EXPIRE NEVER;
step 3: flush privileges;
然后执行命令 mysql -uroot -p,然后回车,输入密码,然后就可以在当前环境中使用了。