文章分类 -  centos python

python django 安装
摘要:pip3 install django==1.11.11 提示:Successfully installed django-1.11.11 安装完成 django-admin:command not found的解决办法 django-admin:command not found的解决办法 找到d 阅读全文
posted @ 2019-05-04 15:00 潇潇六月雨 阅读(103) 评论(0) 推荐(0)
Python之Scrapy爬虫框架安装及简单使用
摘要:题记:早已听闻python爬虫框架的大名。近些天学习了下其中的Scrapy爬虫框架,将自己理解的跟大家分享。有表述不当之处,望大神们斧正。 一、初窥Scrapy Scrapy是一个为了爬取网站数据,提取结构性数据而编写的应用框架。 可以应用在包括数据挖掘,信息处理或存储历史数据等一系列的程序中。 其 阅读全文
posted @ 2019-04-18 17:20 潇潇六月雨 阅读(241) 评论(0) 推荐(0)
python3.7安装, 解决pip is configured with locations that require TLS/SSL问题
摘要:python3.7安装, 解决pip is configured with locations that require TLS/SSL问题1.安装相关依赖 yum install gcc libffi-devel zlib* openssl-devel # libffi-devel zlib-de 阅读全文
posted @ 2019-04-18 16:42 潇潇六月雨 阅读(36891) 评论(0) 推荐(4)
centos6装python3,并安装requests, lxml和beautifulsoup模块
摘要:一. 安装python3并设为默认版本,与python2共存 1、下载Python3.4安装包 wget https://www.python.org/ftp/python/3.4.4/Python-3.4.4.tgz 2、解压、编译、安装 yum install zlib-devel bzip2- 阅读全文
posted @ 2019-04-18 15:01 潇潇六月雨 阅读(238) 评论(0) 推荐(0)
Python 安装报错
摘要:报错: No module named '_ctypes' 若在安装前移除了/usr/bin下python的文件链接依赖,此时yum无法正常使用,需要自己下载相关软件包安装,为节省读者时间,放上链接 #wget http://mirror.centos.org/centos/7/os/x86_64/ 阅读全文
posted @ 2019-04-17 17:21 潇潇六月雨 阅读(702) 评论(0) 推荐(0)
linux-Centos7安装python3并与python2共存
摘要:参考:https://blog.csdn.net/u013214212/article/details/81540840 完全照着这个里面的步骤做,就一点问题没有。不过为了防止意外情况,还是自己总结一遍。 一、安装依赖包,这个具体的作用我也不清楚,感觉好像是在安装的时候会要用到的工具。 yum in 阅读全文
posted @ 2019-04-17 12:50 潇潇六月雨 阅读(983) 评论(2) 推荐(0)