2016-12-22 5 views
5

Ich bin neu bei Python und Anaconda, also bitte entschuldigen Sie jede Ignoranz.Conda: Paket fehlt in aktuellen Win-64-Kanälen

Ich versuche Keras mit Conda zu installieren. Ich bin auf Windows 10 (Win-64). I see that there's a win-64 package of keras @ 1.0.8, aber wenn ich es installieren zu gehen, conda install -c jaikumarm keras=1.0.8, ich die folgende Fehlermeldung erhalten:

conda install -c jaikumarm keras=1.0.8 
Fetching package metadata ........... 
Solving package specifications: . 


PackageNotFoundError: Package not found: '' Package missing in current win-64 channels: 
    - keras 1.0.8* 

You can search for packages on anaconda.org with 

    anaconda search -t conda keras 

Wenn ich die cli Suche mit:

anaconda search -t conda keras 
Using Anaconda API: https://api.anaconda.org 
Run 'anaconda show <USER/PACKAGE>' to get more details: 
Packages: 
    Name      | Version | Package Types | Platforms 
    ------------------------- | ------ | --------------- | --------------- 
    CCXD/keras    | 1.1.1 | conda   | linux-64 
    KEHANG/keras    | 1.0.8 | conda   | linux-64 
              : Deep Learning for Python 
    SentientPrime/keras  | 0.3.0 | conda   | linux-64, osx-64 
              : Theano-based Deep Learning library 
    alchayward/keras   | 0.1.2 | conda   | osx-64 
              : Theano-based Deep Learning library 
    alejandrito/keras   | 0.1.2 | conda   | linux-64, linux-32, osx-64 
    anaconda/keras   | 1.1.1 | conda   | linux-64 
    calex/keras    | 1.0.4 | conda   | osx-64 
              : Deep Learning for Python 
    conda-forge/keras   | 1.0.7 | conda   | linux-64, win-32, win-64, osx-64 
    creditx/keras    | 1.1.0 | conda   | linux-64 
    d_sivets/keras   | 1.0.6 | conda   | linux-64 
    ddboline/keras   | v0.0.1 | conda   | linux-64 
    derickl/keras    | 1.1.1 | conda   | osx-64 
    ericmjl/keras    | 0.3.1 | conda   | linux-64, osx-64 
              : Theano-based Deep Learning library 
    fbreuer/keras    | 1.0.5 | conda   | linux-64, osx-64 
    jaikumarm/keras   | 1.0.8 | conda   | linux-64, win-32, win-64, linux-32, osx-64 
              : Deep Learning for Python 
    jori/keras    | 1.0.5 | conda   | osx-64 
    kundajelab/keras   | 0.3.2 | conda   | linux-64, osx-64 
              : Deep Learning for Python 
    magonser/keras   | 0.3.1 | conda   | osx-64 
              : Theano-based Deep Learning library 
    markusli/keras   | 0.3.0 | conda   | linux-64 
              : Theano-based Deep Learning library 
    moutai/keras    | 1.0.6 | conda   | linux-64 
    omnia/keras    | 0.3.2 | conda   | linux-64 
              : Theano-based Deep Learning library 
    richlewis/keras   | 0.3.0 | conda   | osx-64 
              : Theano-based Deep Learning library 
    wemeneker/keras   | 1.0.5 | conda   | linux-64 
Found 23 packages 
+2

JAIKUMARM-Kanal bietet nur einige Keras-Versionen für Windows, die Version 1.0.8 ist nur für Linux verpackt. Du könntest die neueste Version zu Conda-forge https://github.com/conda-forge/keras-feedstock beitragen. Leute bei Conda-Schmiede sind sehr freundlich und helfen, wenn es Fragen/Probleme gibt. – cel

+0

Ausgezeichnet, danke! Gibt es eine Möglichkeit für mich zu sagen, welche Version für welche Betriebssysteme verfügbar ist? – Adam

+1

können Sie anaconda.org überprüfen und durch den Dateibereich der einzelnen Kanäle klicken. Ich bin mir nicht sicher, ob es einen einfacheren Weg gibt. siehe: https://anaconda.org/search?q=keras – cel

Antwort

5

ich hatte das gleiche Problem, Sie müssen das bekommen Das neueste Paket von der anaconda-Website, kopieren Sie dann den Befehl display und führen Sie ihn im Anaconda-Prompt-Fenster aus. Ich habe die Details in Schritt für Schritt hier gepostet:

http://www.mostafaelzoghbi.com/2017/04/how-to-install-keras-on-windows-10-64.html

+2

Erprobierte den Link gepostet und erhielt weiterhin 'Pakete fehlen in den aktuellen Kanälen: ...' –

0

aus dem Suchergebnis Ihnen zur Verfügung gestellten, scheint es, dass jaikumarm/keras win64 Plattform-Software, können Sie

anaconda show jaikumarm/keras 

und Conda Typ wird den Installationskanal und Befehl für Sie auffordern

Verwandte Themen