Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Yahoo Finance Package installation in Anaconda

I am trying to install Yahoo Finance Package from Anaconda Cloud with the below CMD Line instruction

pip install -i http://pypi.anaconda.org/pypi/simple yahoo-finance

But I am getting an error, not sure how to bypass. Please help

enter image description here

If I do

pip install yahoo-finance

enter image description here

like image 790
Deb Avatar asked Mar 11 '23 02:03

Deb


2 Answers

Just run this command on Anaconda prompt:

pip3 install yfinance
like image 53
Erick Avatar answered Mar 19 '23 11:03

Erick


Below code:

 python -m pip install yahoo-finance 

works well

Version of Python: 3.7

Typing in : Anaconda Prompt

like image 44
noob Avatar answered Mar 19 '23 10:03

noob