Esther Li
Esther Li

Reputation: 25

The following packages are not available from current channels: - yfinance

I try to install yfinance into anaconda, using command: conda install -c anaconda yfinance

error message shows: WARNING: The conda.compat module is deprecated and will be removed in a future release. Collecting package metadata: done Solving environment: failed

PackagesNotFoundError: The following packages are not available from current channels:

Current channels:

To search for alternate channels that may provide the conda package you're looking for, navigate to

https://anaconda.org

and use the search bar at the top of the page.

I have also used: conda config --append channels conda-forge

nothing changes

conda install -c anaconda yfinance conda config --append channels conda-forge

Upvotes: 1

Views: 3391

Answers (1)

Henrique Branco
Henrique Branco

Reputation: 1940

Try to use the pip install yfinance command instead of conda install

Upvotes: 5

Related Questions