Python3.6.4必須downgrade成3.5
pip版本最低9.0.3
自己的電腦必須已經(jīng)安裝好git
關(guān)于anaconda prompt報(bào)錯(cuò)“Cannot find command 'git'”解決
在anaconda prompt執(zhí)行
conda install pandas-datareader
報(bào)錯(cuò),讀prompt的錯(cuò)誤,執(zhí)行它提示的命令,把Python3.6.4降級(jí)成3.5,pip升級(jí)成9.0.3,過程有點(diǎn)長(zhǎng),5 6分鐘。
(有點(diǎn)不太理解的是,Python降級(jí)后,我的程序與功能里顯示的還是3.6.4 ↓
可能只是在anaconda里降級(jí)了?不懂)
電腦已經(jīng)安裝好git,在git bash里執(zhí)行
git clone https://github.com/pydata/pandas-datareader.git
執(zhí)行完畢后,在anaconda prompt里執(zhí)行
pip install git+https://github.com/pydata/pandas-datareader.git
(因?yàn)殚_始我沒有在git bash安裝pandas-datareader就直接執(zhí)行這一步,一直報(bào)Cannot find command 'git'”錯(cuò),我就把git添加到環(huán)境變量了,不知道后來有沒有幫助)
執(zhí)行完畢,就可以使用Python獲取Yahoo的金融數(shù)據(jù)了。
# 使用Yahoo Finance的API獲取四個(gè)公司的股票數(shù)據(jù)
import pandas as pd
import numpy as np
from pandas_datareader import data
codes = ['AAPL', 'IBM', 'MSFT', 'GOOG'] # 四個(gè)股票
all_stock = {}
for ticker in codes:
all_stock[ticker] = data.get_data_yahoo(ticker,start='1/1/2018', end='30/3/2018') # 默認(rèn)從2010年1月起始
volume = pd.DataFrame({tic: data['volume'] for tic, data in all_stock.items()})
open = pd.DataFrame({tic: data['open'] for tic, data in all_stock.items()})
high = pd.DataFrame({tic: data['high'] for tic, data in all_stock.items()})
low = pd.DataFrame({tic: data['low'] for tic, data in all_stock.items()})
close = pd.DataFrame({tic: data['close'] for tic, data in all_stock.items()})
price = pd.DataFrame({tic: data['adjclose'] for tic, data in all_stock.items()}) # 已調(diào)整或者復(fù)權(quán)后的收盤價(jià),能比較真實(shí)反映股票的表現(xiàn)
補(bǔ)充:pip通過setup.py和git倉庫安裝package
安裝setup.py配置文件中的包
進(jìn)入到setup.py所在目錄
安裝git倉庫中的包
pip install git+git clone 倉庫地址.git
python代碼打包為whl格式
python setup.py bdist_wheel --universal
通過setup.py直接安裝包
python setup.py build
python setup.py install
以上為個(gè)人經(jīng)驗(yàn),希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教。
您可能感興趣的文章:- Git在Windows中安裝與使用教程
- Gitee的下載安裝配置及使用步驟詳解
- eclipse的git插件安裝、配置與使用詳解
- Linux/Ubuntu Git從安裝到使用的方法步驟
- 在Ubuntu Linux上安裝和使用Git和GitHub
- Git初次使用時(shí)的安裝配置圖文教程
- Git安裝和使用圖文教程(分享)
- Windows系統(tǒng)安裝使用Git的詳細(xì)教程