Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

July 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more

Reply
Steve331
New Member

Python Error

I'm new to using PowerBi and Python and have tried enrolling on a course that shows how to build up a stocks and shares dashboard. I've used the commenads suggested but Python is coming up with the following error 

Details: "ADO.NET: Python script error.
<pi>ModuleNotFoundError: No module named 'yfinance'
</pi>"

 

The full script I'm using is as follows :

 

import pandas as pd

import yfinance as yf

ticker="AAPL"

 

data= yf.download(ticker, start="2019-01-01", end="2022-12-31")

Data.reset_index(inplace=True)

data

 

Can anyone give me any suggestions as to how to fix this please?

Thanks Steve

2 ACCEPTED SOLUTIONS

change

Data.reset_index(inplace=True)

to 

data.reset_index(inplace=True)

View solution in original post

Ahh brilliant That worked-didn't notice I had that capital at start-Thanks so much for your help 🙂

View solution in original post

4 REPLIES 4
lbendlin
Super User
Super User

before you can use that module in Power BI you need to add it to your PC's Python install, via pip, for example.

Thanks lbendlin

I fixed that issue but now I have the following error message : 
Details: "ADO.NET: Python script error.
<pi>NameError: name 'Data' is not defined. Did you mean: 'data'?
</pi>"
 
 

 

change

Data.reset_index(inplace=True)

to 

data.reset_index(inplace=True)

Ahh brilliant That worked-didn't notice I had that capital at start-Thanks so much for your help 🙂

Helpful resources

Announcements
Fabric Community Sticker Design Challenge Barcelona Carousel

Fabric Community Sticker Challenge - Barcelona 2026

If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!

July Power BI Update Carousel

Power BI Monthly Update - July 2026

Check out the July 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors