摘要:
一、安装linux下图片处理工具: # which tesseract/usr/bin/tesseract 二、安装python连接模块: pip install pytesseract pip install Pillow 三、进入python运行环境: 1报错: ( File "/usr/lib 阅读全文
摘要:
原代码中:self.file = open('data.json', 'w', encoding='utf-8') 运行报错: 修改:(导入IO模块) 阅读全文
摘要:
1、当前交互窗口: import sys print(sys.path) sys.path.append("需要的路径") 2、设置全局永久: 看下自己的环境变量(/usr/lib/python2.7/site-packages): cd /usr/lib/python2.7/site-packag 阅读全文
摘要:
https://npm.taobao.org/mirrors/node/v8.4.0/ 阿里云地址 阅读全文
摘要:
脚本: #-*- coding: utf8 -*- import xlrd import os import urllib import urllib2 #忽略decode import sys reload(sys) sys.setdefaultencoding('utf8') #打开excel 阅读全文
摘要:
补全: 安装docker自带包: source /usr/share/bash-completion/completions/docker 缺少下面的包,TAB会报错 yum install -y bash-completion sh /usr/share/bash-completion/bash_ 阅读全文
摘要:
申请免费EC2一年(每月在线不要超过750小时,流量15G): 1、安装pip: yum list | grep python-pip (没有这个包,需要更新EPEL,yum -y install epel-release) 2、安装shadowsocks: pip install -y shado 阅读全文
摘要:
当主从复制遇到错误: 手动设置:>stop slave; >set global sql_slave_skip_counter=1; #跳过事物数量 >start slave; 修改配置:vi /etc/my.cnf [mysqld] slave-skip-errors=1062,1053 slav 阅读全文
摘要:
Apache日志记录客户端IP,而不是nginx代理的IP: 在nginx配置文件的location中设置proxy_set_header X-Real-IP $remote_addr; 再修改http的配置文件,日志格式LogFormat "%{X-Real-IP}..............." 阅读全文
摘要:
1、建立相应目录: mkdir /usr/lib/python2.7/site-packages/django/mysite/static 2、在settings里指定目录: STATIC_ROOT="/usr/lib/python2.7/site-packages/django/mysite/st 阅读全文