摘要: 准备工作 centos7 python2.7【由于默认得是python2.7所以就让python2.7作为环境】 Postgresql 10 postgresql10安装 1、安装rpm yum install https://download.postgresql.org/pub/repos/yu 阅读全文
posted @ 2020-04-29 17:59 python_snowwhite 阅读(595) 评论(0) 推荐(0) 编辑
摘要: 1.创建一个待执行的py文件 2.crontab -e实现每分钟的定时任务 3.查看所有的定时任务 crontab -l 4.查看定时任务的输出 tail -f run2.log 5.关掉定时任务 service crond stop 阅读全文
posted @ 2020-04-26 15:12 python_snowwhite 阅读(541) 评论(0) 推荐(0) 编辑
摘要: 1.第一步 2.配置服务器地址 配置服务器路径下的路径(Mappings) 3.点击OK即可 4.同步代码 阅读全文
posted @ 2020-04-26 14:18 python_snowwhite 阅读(720) 评论(0) 推荐(0) 编辑
摘要: 转自别的大佬:https://blog.csdn.net/llh_1178/article/details/99304912 阅读全文
posted @ 2020-04-16 15:53 python_snowwhite 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 1.安装依赖包dblib 1.1点击链接:https://pypi.org/simple/dlib/ 1.2点击下载:dlib-19.8.1-cp36-cp36m-win_amd64.whl 1.3进入刚才下载的目录,得到dblib的路径:‪C:\Users\xxx\Downloads\dlib-1 阅读全文
posted @ 2020-04-16 15:50 python_snowwhite 阅读(664) 评论(0) 推荐(0) 编辑
摘要: 详细步骤: 转自:https://blog.csdn.net/qq_37345604/article/details/90034424 阅读全文
posted @ 2020-04-02 11:59 python_snowwhite 阅读(296) 评论(0) 推荐(0) 编辑
摘要: 如果你在pip install fdfs_client时报错如下: 本文总共介绍两种方法: 第一种:使用清华镜像,下载快一些 pip install -i https://pypi.tuna.tsinghua.edu.cn/simple py3Fdfs 如果第一种情况成功,就可以不用看下边得内容,如 阅读全文
posted @ 2020-04-02 11:43 python_snowwhite 阅读(655) 评论(0) 推荐(0) 编辑
摘要: 1.官网下载最新python包 https://www.python.org/ftp/python/3.8.2/python-3.8.2-amd64.exe 2.双击运行 3.等待安装完成后,在默认安装目录里找 C:\Users\xxx\AppData\Local\Programs\Python\P 阅读全文
posted @ 2020-03-31 13:56 python_snowwhite 阅读(358) 评论(0) 推荐(0) 编辑
摘要: 查看文件内容 cat filename 查看文件实时更新 tail -f filename 创建目录 mkdir name 层级创建目录 mkdir -p name 移动文件 mv a.zip /usr/local 杀死一个进程 kil -9 pid 从本地上传文件到虚拟机 rz 从服务器下载到本地 阅读全文
posted @ 2020-03-31 11:17 python_snowwhite 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 准备工作 准备gcc环境和其他依赖包【python3.7以上的需要】 1.yum -y install gcc 2.yum -y install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-deve 阅读全文
posted @ 2020-03-27 16:04 python_snowwhite 阅读(709) 评论(0) 推荐(1) 编辑