简体   繁体   中英

How to install mpl_finance packages into environment on Anaconda?

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.

  1. Go to anaconda prompt
  2. Select your environment
  3. Run 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 ).

conda install -c conda-forge mplfinance

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM