diff --git a/README.md b/README.md index d089deb45..e233bb137 100644 --- a/README.md +++ b/README.md @@ -50,21 +50,15 @@ Install `yfinance` using `pip`: $ pip install yfinance --upgrade --no-cache-dir ``` -To install `yfinance` using `conda`, see -[this](https://anaconda.org/ranaroussi/yfinance). +[With Conda](https://anaconda.org/ranaroussi/yfinance). -Test new features by installing betas, provide feedback in [corresponding Discussion](https://github.com/ranaroussi/yfinance/discussions): -``` {.sourceCode .bash} -$ pip install yfinance --upgrade --no-cache-dir --pre -``` +To install with optional dependencies, replace `optional` with: `nospam` for [caching-requests](#smarter-scraping), `repair` for [price repair](https://github.com/ranaroussi/yfinance/wiki/Price-repair), or `nospam,repair` for both: -To install with extra dependencies, replace `extra` with `nospam` for custom requests or `repair` for price repairing functionality: ``` {.sourceCode .bash} -$ pip install yfinance[extra] +$ pip install yfinance[optional] ``` -To view the full list of [required dependencies](https://github.com/ranaroussi/yfinance/blob/main/requirements.txt) and extra packages, see [this](https://github.com/ranaroussi/yfinance/blob/f08fe83290136d103d46d67524f5b6e7b6b827ff/setup.py#L62). - +[Required dependencies](./requirements.txt) , [all dependencies](./setup.py#L62). --- @@ -257,26 +251,6 @@ yf.set_tz_cache_location("custom/cache/location") --- - - - ## Developers: want to contribute? `yfinance` relies on community to investigate bugs and contribute code. Developer guide: https://github.com/ranaroussi/yfinance/discussions/1084