2017-03-16 7 views
0

Py4j를 Anaconda - Spyder에 설치할 수 없습니다.Py4j를 Anaconda에 설치하는 중 오류가 발생했습니다.

저는 Windows 32 비트, 파이썬 3.5 및 아나콘다 4.1에서 작업하고 있습니다.

C:\Users\360529>anaconda search -t conda py4j 
Using Anaconda API: https://api.anaconda.org 
Run 'anaconda show <USER/PACKAGE>' to get more details: 
Packages: 
    Name      | Version | Package Types | Platforms 
    ------------------------- | ------ | --------------- | --------------- 
    Voskrese/py4j    |  0.9 | conda   | win-64 
              : Enables Python programs to dynamical 
ly access arbitrary Java objects 
    anaconda-cluster/py4j  |  0.9 | conda   | linux-64, osx-64 
              : Enables Python programs to dynamical 
ly access arbitrary Java objects 
    ashahba/py4j    | 0.10.4 | conda   | linux-64 
    auto/py4j     | 0.8.1 | conda   | linux-64, linux-32 

              : http://py4j.sourceforge.net/ 
    blaze/py4j    |  0.9 | conda   | linux-64, osx-64 
              : Enables Python programs to dynamical 
ly access arbitrary Java objects 
    chdoig/py4j    | 0.8.1 | conda   | osx-64 
              : Enables Python programs to dynamical 
ly access arbitrary Java objects 
    conda-cluster/py4j  | 0.8.2.1 | conda   | linux-64, osx-64 
              : Enables Python programs to dynamical 
ly access arbitrary Java objects 
    conda-forge/py4j   | 0.10.4 | conda   | linux-64, win-32, 
win-64, osx-64 
    hargup/py4j    |   | conda   | linux-64 
              : Enables Python programs to dynamical 
ly access arbitrary Java objects 
    marciorf/py4j    | 0.8.2.1 | conda   | linux-64 
              : Enables Python programs to dynamical 
ly access arbitrary Java objects 
    mutirri/py4j    | 0.8.2.1 | conda   | linux-64 
    quasiben/py4j    | 0.10.1 | conda   | linux-64, osx-64 
    sotera/py4j    |  0.9 | conda   | linux-64 
              : Enables Python programs to dynamical 
ly access arbitrary Java objects 
    tapatk/py4j    | 0.10.4 | conda   | linux-64, win-64 
Found 14 packages 

그것은 승리처럼 보인다 :

enter image description here

가 나는 또한 다음과 같은 명령을 실행 py4j에게

를 설치 CONDA을 포함하여 여러 명령을 시도 :

는 나는 다음과 같은 오류가 발생합니다 10.4 버전의 32 비트 버전을 사용할 수 있습니다. 그러나 왜 설치하지 않는지 확실하지 않습니다.

답변

2

다음과 같이 입력하면됩니다

conda install -c blaze py4j=0.10.4 

이 아나콘다 채널 blaze에서 패키지 py4j의 v0.10.4를 가져 오기 위해 노력할 것입니다. 하지만 당신은 anaconda search py4j에 대한 출력에서 ​​볼 수 있듯이 :

conda-forge/py4j | 0.10.4 | conda | linux-64, win-32, win-64, osx-64 

Win-32 버전은 CONDA 채널 conda-forge 볼 수 있습니다. 따라서 다음을 입력해야합니다.

conda install -c conda-forge py4j=0.10.4 
+0

놓치지 마세요. 그것은 작동합니다. 감사! – Bonson