window7_64+python3.6安装Twisted 安装:pip instatll Twisted-17.9.0-cp36-cp36m-win_amd64.whl 错误:Twisted-17.9.0-cp36-cp36m-win_amd64.whl is not a supported wh ...
分类:
编程语言 时间:
2018-07-18 23:34:48
阅读次数:
228
最近研究金融数据,需要获取大量的金融数据进行研究,在python中金融数据模块进行了迁移,从以前的pandas到pandas_datareader模块的迁移,折腾了挺久了,终于可以成功的获取数据,环境是基于python3 安装pandas_datareader模块 1.利用pandas_datare ...
分类:
其他好文 时间:
2018-07-18 20:36:18
阅读次数:
254
安装python3.6可能使用的依赖 # yum install openssl-devel bzip2-devel expat-devel gdbm-devel readline-devel sqlite-devel 下载python3.6编译安装 到python官网下载https://www.p ...
分类:
编程语言 时间:
2018-07-14 18:04:45
阅读次数:
172
问题: python3安装web.py安装包出现Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ConnectTimeoutError ...
分类:
编程语言 时间:
2018-07-14 14:39:12
阅读次数:
1273
问题描述: 在有几台电脑上pip install paramike报错 报错内容: Could not fetch URL https://pypi.python.org/simple/pip/: There was a problem confirming the ssl certificate: ...
分类:
编程语言 时间:
2018-07-13 01:15:31
阅读次数:
335
1.python官方下载地址:https://www.python.org/;python现在有两个版本:python2.7.x和python3.x 2.安装:一路下一步,默认安装 3.配置环境变量:计算机--右键--属性--高级系统设置--环境变量--系统变量:找到path在结尾处粘贴‘C:\Py ...
分类:
编程语言 时间:
2018-07-08 12:42:26
阅读次数:
157
win平台安装 1. 下载并安装 pywin32: 进入https://sourceforge.net/projects/pywin32/files/,点击pywin32,选择Build 221,找到自己对应版本的pywin32点击连接即可自己下载,安装按步骤点击即可 2. pip3 install ...
分类:
编程语言 时间:
2018-07-07 15:54:06
阅读次数:
155
参考自:https://blog.csdn.net/qq_15695761/article/details/77502788 当前使用ubuntu14.04 1.添加python3.6安装包,并安装(也可以去官网下载安装包) [html] view plain copy <code class="l ...
分类:
编程语言 时间:
2018-07-07 14:26:42
阅读次数:
722
1. 安装依赖环境 # yum -y install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gdbm-devel db4-devel libpcap-devel ...
分类:
编程语言 时间:
2018-07-05 21:29:21
阅读次数:
173
requests库介绍 发送http请求的第三方库,兼容python2和python3 安装: pip install requests 使用: import requests发送请求response = requests.get(url)response = requests.post(url) ...
分类:
编程语言 时间:
2018-07-01 22:02:10
阅读次数:
209