
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
보고 계신 화면 전체를 캡처해 주시면, 튜터님들이 빠르게 상황을

이해할 수 있어요.
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
<ipython-input-66-2afea3fcd0a8> in <cell line: 13>()
11
12 # 애플의 주식 데이터 가져오기 (FRED 사용)
---> 13 apple_stock_data = pdr.DataReader('AAPL', data_source='quandl', start=start_date, end=end_date)
14
15 # 종가 데이터만 추출
2 frames
/usr/local/lib/python3.10/dist-packages/pandas_datareader/quandl.py in __init__(self, symbols, start, end, retry_count, pause, session, chunksize, api_key)
63 api_key = os.getenv("QUANDL_API_KEY")
64 if not api_key or not isinstance(api_key, str):
---> 65 raise ValueError(
66 "The Quandl API key must be provided either "
67 "through the api_key variable or through the "
ValueError: The Quandl API key must be provided either through the api_key variable or through the environmental variable QUANDL_API_KEY.
