import pandas as pd
from aplha_vantage.timeseries import TimeSeries
import time
api_key = '*************'
ts = TimeSeries(key=api_key, output_format='pandas')
data, meta_data = ts.get_intraday(symbol='MSFT', interval = '1min', output_size = 'full')
print(data)
When I try to pull the data into the terminal it gives me a ModuleNotFoundError on alpha_vantage even though I had installed it using terminal.
I'm using pycharm and python 3.9
you can enter virtual env then excute pip list to check if installed