Reputation: 1
!pip install matplotlib.finance
ERROR: Could not find a version that satisfies the requirement matplotlib.finance (from versions: none) ERROR: No matching distribution found for matplotlib.finance
from matplotlib.finance import candlestick_ohlc from matplotlib.dates import DateFormatter, date2num, WeekdayLocator, DayLocator, MONDAY
ModuleNotFoundError: No module named 'matplotlib.finance'
anyone help me solve this problem~ Thanks
Upvotes: 0
Views: 250
Reputation: 1629
That looks to be an old package that is no longer available. It seems mplfinance is the way to go now.
pip install mplfinance
Upvotes: 1