- 博客(12)
- 收藏
- 关注
原创 Could not open requirements file: [Errno 2] No such file or directory: /requirements.txt报错已解决
1.把requirements.txt放到 pip.exe 目录文件下,我的是在C:\Python36\Scripts下2.cmd中 路径移动至 该目录下后再执行 pip install 等等 。如:C:\Python36\Scripts>pip --default-timeout=100 download -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple -d /packages/...
2020-06-09 11:32:54 28178 6
原创 secureCRT 中文乱码 已解决
我是crt远程连接 linux时出现中文乱码,需要先在crt中–打开选项–外观–字符编码修改为utf-8,就不会出现中文字符乱码了。
2020-05-28 16:14:48 250
原创 linux cent7 uwsgi自启动 亲测有效!!
cent7下自启1、找到uwsgi位置whereis uwsgi得到:/usr/local/python3/bin/uwsgi2.创建配置文件cd /etc/systemd/system/ touch server_uwsgi.servicevi server_uwsgi.service写入以下:[Unit]Description=HTTP Interface Serv...
2020-04-19 21:48:46 865 1
原创 linux cent7 安装 mysql 卸载 开远程 已测试!
所有内容,我已测试,希望可以帮到你。安装*下载mysql源安装包wget -i -c http://dev.mysql.com/get/mysql57-community-release-el7-10.noarch.rpmwget -i -c https://dev.mysql.com/get/mysql80-community-release-el7-1.noarch.rpm安装mys...
2020-04-19 14:33:40 186
原创 django {%url %}传递参数 url 传参 报错
无参数传递的url view 等路由传递,不再赘述 ,一般前端如下,后端通过url views来处理href="{% url ‘article:redit_article’ %}但是如果前端需要向后端传输参数的时候,如果是固定参数可以这样用href="{% url ‘article:redit_article’ ‘20’ %} 我这里20指的是id,同时调整url,使用re_path...
2020-02-24 21:18:41 2374
原创 django slug中文 unicode报错 不显示问题
常规引用slug 一般用于url标识from django.db import modelsfrom django.template.defaultfilters import slugifyclass Post(models.Model):title = models.CharField(‘标题’, max_length=100)content = models.TextField(‘...
2020-02-23 00:09:04 335 2
原创 request.POST[] request.POST.get 区别
如果传递过来的数值不为空,那么这两种方法都没有错误,可以得到相同的结果。但是如果传递过来的数值为空,那么request.POST[‘title’]则会提示Keyerror错误,而request.POST.get(‘title’)则不会报错,而是返回一个none。简单来说:request.POST[‘title’]就算没有值也不会报错,返回nonerequest.POST.get(‘ti...
2020-02-22 18:08:52 253
转载 pip 安装超时
使用pip安装python库的时候经常会遇到超时而无法下载的问题,解决办法如下:一,首先在下面文件夹下建立一个pip文件夹C:\Users\Administrator\AppData\Roaming然后在pip文件夹下新建一个文件pip.ini,内容:[global]timeout = 60000index-url = https://pypi.tuna.tsinghua.edu.cn...
2020-02-21 14:59:13 80
原创 django 日期 过滤器 filter
[’%Y-%m-%d %H:%M:%S’, # ‘2006-10-25 14:30:59’‘%Y-%m-%d %H:%M’, # ‘2006-10-25 14:30’‘%Y-%m-%d’, # ‘2006-10-25’‘%m/%d/%Y %H:%M:%S’, # ‘10/25/2006 14:30:59’‘%m/%d/%Y %H:%M’...
2020-02-21 13:37:52 1161
原创 Microsoft Visual C++ 14.0 is required scrapy 安装报错
C:\python36\pip install scrapy提示信息里写到需要安装twisted,但是在我尝试用pip install twisted时,还是会出现"Microsoft Visual C++ 14.0 is required"的问题。过程中可能会报错,需要安装c++ 14.0 环境的一个错误,如下error: Microsoft Visual C++ 14.0...
2019-08-28 10:53:01 103
转载 python debug
django线上环境中的日志输出是相当重要的,它可以将所有的错误、警告、调试等重要信息全部输出到日志,这样便于维护和排查问题。接下来本文会详细的介绍django logging配置,以及这些配置的含义与作用。用到的东西,本文也会尽量详细的解答:首先先来看看实际中配置:配置settings.py写在最前python manage.py runserver >> /home/ae...
2019-07-22 15:25:23 180
原创 nginx django部署后admin访问时无样式 css static
反复找了2个小时也没有找到问题,最后终于:uwsgi+nginx服务器部署完成之后发现django后台admin访问时无样式1.先打开django项目中settings.py文件(/root/mysite/mysite/settings.py),添加STATIC_ROOT = ‘/root/mysite/static/’2.打开nginx配置文件nginx.conf,location ...
2018-11-18 20:56:11 1633
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人