随笔分类 - python
python随笔:启动django报错
摘要:错误码: $ python manage.py runserver 127.0.0.1:8000 Performing system checks... System check identified no issues (0 silenced). You have 13 unapplied mig
阅读全文
ERROR: Could not install packages due to an EnvironmentError: [Errno 13] Permission denied: '/Library/Python/2.7/site-packages/Django-1.11.23.dist-info' Consider using the `--user` option or check the
摘要:在使用pip安装django时,报错 权限不足: 1.安装报错信息 2.解决办法根据提示在install后面加上--user就行 3.安装成功结果如上图
阅读全文
Python中安装bs4后,pycharm依然报错ModuleNotFoundError: No module named 'bs4'
摘要:学习网络抓取时,第一步出现问题。 执行示例代码 from urllib.request import urlopen from bs4 import BeautifulSoup html = urlopen("http://www.pythonscraping.com/exercises/exerc
阅读全文
Python中__init__和self的意义和作用
摘要:由于类可以起到模板的作用,因此,可以在创建实例的时候,把一些我们认为必须绑定的属性强制填写进去。以学生类为例,通过定义一个特殊的__init__方法,在创建实例的时候,就把name,score等属性绑上去: 注意:特殊方法“__init__”前后分别有两个下划线!!! 注意到__init__方法的第
阅读全文
安装pygame出现is not a supported wheel on this platform解决办法
摘要:安装python库pygame时出现如下错误: 查看python的版本是否与之匹配,发现版本不匹配问题 例如1.我的python3.6是32位的,就只能安装cp36的;结果发现安装还是出现问题; 2.如图上,我的python是32位,而pygame是64位,所以依然报错 解决方法:python和py
阅读全文
安装Pygame(Python3.6,windows)
摘要:1. 本机为python3.6的环境 2. 到pygame官网下载对应系统,对应python版本的pygame文件,下载地址:https://pypi.python.org/pypi/Pygame/1.9.3,必须下载"pygame-1.9.3-cp36-cp36m-win_amd64.whl (4
阅读全文
浙公网安备 33010602011771号