0
votes

When I try installing PyFlux for Python 3.7, I get errors. When pip install pyflux, I get a long error message stating "ERROR: Command errored out with exit status 1:...". When using conda install pyflux, I get another error:

Collecting package metadata (repodata.json): done Solving environment: failed with initial frozen solve. Retrying with flexible solve.

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

  • pyflux

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.

Can anyone help me? Thank you!

2
pip3 install pyflux <-- Try pip3 for Python3.xDUDANF
When pip install pyflux, I get a long error message Please provide the entire error message.AMC

2 Answers

5
votes

This is what worked for me:

pip install git+https://github.com/RJT1990/pyflux
2
votes

I was facing the same issue

This GitHub Installation issue and its solution worked for me

You need to download a pyflux wheel file from here related to the python version in use. Put the wheel file in the current working directory and try pip install [wheel file name]:

!pip install pyflux-0.4.17-cp37-cp37m-win_amd64.whl

above mentioned is the wheel file that worked for my python version and desktop.

I hope that helps !