溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Python3 使用pip安裝git并獲取Yahoo金融數(shù)據(jù)的步驟

發(fā)布時(shí)間:2021-04-09 10:08:05 來源:億速云 閱讀:451 作者:啵贊 欄目:開發(fā)技術(shù)

這篇文章主要講解了“Python3 使用pip安裝git并獲取Yahoo金融數(shù)據(jù)的步驟”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“Python3 使用pip安裝git并獲取Yahoo金融數(shù)據(jù)的步驟”吧!

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)長,5 6分鐘。

(有點(diǎn)不太理解的是,Python降級(jí)后,我的程序與功能里顯示的還是3.6.4 ↓

Python3 使用pip安裝git并獲取Yahoo金融數(shù)據(jù)的步驟

可能只是在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所在目錄

pip install -e .

安裝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

感謝各位的閱讀,以上就是“Python3 使用pip安裝git并獲取Yahoo金融數(shù)據(jù)的步驟”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對(duì)Python3 使用pip安裝git并獲取Yahoo金融數(shù)據(jù)的步驟這一問題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI