
Python
搁浅的执念
这个作者很懒,什么都没留下…
展开
-
pyinstaller打包websockets报错 No module named ‘websockets.legacy‘
安装websockets 8.1版本pip install websockets==8.1原创 2021-12-27 17:44:16 · 3749 阅读 · 0 评论 -
CentOS7安装Python3.7
https://www.cnblogs.com/xiujin/p/11477419.html转载 2021-12-17 10:39:45 · 249 阅读 · 0 评论 -
Django前后端分离处理静态文件请求
settings文件中的配置if DEBUG is True: STATICFILES_DIRS = [ os.path.join(BASE_DIR, 'edu/dist/static/'), # 添加内容 ]else: STATIC_ROOT = os.path.join(BASE_DIR, 'edu/dist/static/')urls.pyfrom django.views import staticfrom django.conf import原创 2021-06-24 14:50:28 · 318 阅读 · 0 评论 -
Python关于xlrd读取.xlsx文件报错:xlrd.biffh.XLRDError: Excel xlsx file; not supported
解决方法:将xlrd版本降低至1.2.0。pip uninstall xlrdpip install xlrd==1.2.0原创 2021-01-18 09:50:17 · 4295 阅读 · 8 评论