How to install the mpl_finance
package into the environment path on Anaconda?
I tried pip install mpl_finance
but I still can't find the package on Anaconda, where did it go? I am pretty fresh in Python.
How to install the mpl_finance
package into the environment path on Anaconda?
I tried pip install mpl_finance
but I still can't find the package on Anaconda, where did it go? I am pretty fresh in Python.
pip install mpl_finance
In your code, change matplotlib.finance
to mpl_finance
regards
The mpl-finance (aka mpl_finance) package is deprecated. As of December 2019 there is a new version of matplotlib finance, with documentation. https://pypi.org/project/mplfinance/
Install with:
pip install --upgrade mplfinance
or
conda install -c conda-forge mplfinance
The new package name does NOT have the dash- or underscore_
It is now mplfinance
(not mpl-finance
, nor mpl_finance
).