2017-08-24 13 views
0

Hallo ich habe versucht, R für mein Jupyter Notebook (Anaconda) zu installieren und habe den folgenden Befehl in meiner Anaconda-Eingabeaufforderung "conda install -c r r-essentials" verwendet. Aber es gibt einen Fehler wie unten: irgendwelche Vorschläge (besonders fehlendes Paket).Anaconda Jupyter R installieren

(C:\Anaconda3) C:\windows\system32>conda install -c r r-essentials 
Using Anaconda Cloud api site https://api.anaconda.org 
Fetching package metadata ...Could not connect to 
https://repo.continuum.io/pkgs 
/pro/noarch/ 
Could not connect to https://repo.continuum.io/pkgs/free/win-64/ 
Could not connect to https://repo.continuum.io/pkgs/pro/win-64/ 
...Could not connect to https://conda.anaconda.org/r/win-64/ 
.Could not connect to https://conda.anaconda.org/r/noarch/ 

.Could nicht https://repo.continuum.io/pkgs/free/noarch/ verbinden. Paketspezifikationen lösen:. Fehler: Paket in der aktuellen Win-64 Kanäle fehlt: - r-essentials

Sie für Pakete auf anaconda.org suchen mit

anaconda search -t conda r-essentials 

(C: \ Anaconda3) C: \ windows \ system32 >

Danke

Antwort

0

Versuchen Sie diese Alternative. Er arbeitete an der Maschine meines Kollegen:

conda create -n my-r-env -c r r-essentials

Ein anderer Ansatz wäre Anaconda neu zu installieren und auszuführen

conda install -c r r-essentials

Lassen Sie uns wissen, ob es funktioniert.

Verwandte Themen