Install Python Package: "package Missing In Current Win-64 Channels"
Solution 1:
You need to use a channel that has a win-64 version. Use:
conda install -c bioninja gseapy
The option -c or --channel allows to specify a channel.
You can also add a channel permanently via:
conda config--add channels bioninjaThis creates a file .condarc in your home directory (on Windows C:\Users\<username>):
channels:
- bioninja
- defaults
You can modify this file manually. The order of the channels determines their precedence.
Note: Files with a leading . might not be displayed
by certain file browsers. You might need to change settings to display these
files accordingly.
You can find out if a package exits for your platform by searching on Anaconda. Just type gseapy in the search field and you should see the available packages. The column "Platforms" shows if a "win-64" version exists.
Solution 2:
Now you could install lastest gseapy through bioconda, too
conda install -c bioconda gseapy
Solution 3:
Check the latest version of Keras from the Anaconda distribution website
https://anaconda.org/search?q=keras
Use command:
conda install -c conda-forge keras=<version>Solution 4:
Maybe it need you to specify a detalied version,so you can just find a version support your environment in Anaconda Clound,just a line of command like "conda install -c dhirschfeld protobuf=3.0.0a3.post418+g0cb84ee ",I select this and it works.

Post a Comment for "Install Python Package: "package Missing In Current Win-64 Channels""