Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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
Solved! Go to Solution.
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 🙂
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
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 🙂
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 63 | |
| 45 | |
| 41 | |
| 36 | |
| 23 |
| User | Count |
|---|---|
| 189 | |
| 124 | |
| 106 | |
| 78 | |
| 52 |