7

私はpyenv envにpythonをインストールしようとしましたが、以下のエラーが発生しています。openssl は既に使用可能であるため、openssl をパス変数に追加しましたが、それでも同じエラーがスローされます。

また、別のユーザー(ルートではない)で試してみました。同じエラー!そしてwikiページをフォローアップしようとしましたが、OpenSUSEについてはGoogleでもあまり助けが見つかりません。

これをさらに進める方法を教えてもらえますか。

 xxxxx@xxxxxxxxxxx:~/.pyenv> pyenv install 3.5.2
    Downloading Python-3.5.2.tar.xz...
    -> https://www.python.org/ftp/python/3.5.2/Python-3.5.2.tar.xz
    Installing Python-3.5.2...
    WARNING: The Python bz2 extension was not compiled. Missing the bzip2 lib?
    WARNING: The Python readline extension was not compiled. Missing the GNU readline lib?
    ERROR: The Python ssl extension was not compiled. Missing the OpenSSL lib?

    Please consult to the Wiki page to fix the problem.
    https://github.com/yyuu/pyenv/wiki/Common-build-problems


    BUILD FAILED (SLES 12.1 using python-build 20160726)

    Inspect or clean up the working tree at /tmp/python-build.20160801100205.31144
    Results logged to /tmp/python-build.20160801100205.31144.log

    Last 10 log lines:
    (cd /home/xxxxx/.pyenv/versions/3.5.2/share/man/man1; ln -s python3.5.1 python3.1)
    if test "xupgrade" != "xno"  ; then \
            case upgrade in \
                    upgrade) ensurepip="--upgrade" ;; \
                    install|*) ensurepip="" ;; \
            esac; \
             ./python -E -m ensurepip \
                    $ensurepip --root=/ ; \
    fi
    Ignoring ensurepip failure: pip 8.1.1 requires SSL/TLS
4

5 に答える 5

7

Python は、基盤となるオペレーティング システム ライブラリを使用して一部のライブラリをサポートしていますが、これらのライブラリがインストールされていないようです。Ubuntuでは、それらをインストールできるはずです

$ sudo apt-get install bzip2 libreadline6 libreadline6-dev openssl

SUSE 12の場合、ご指摘のとおり、必要なコマンドは

zypper -n install openssl libopenssl-devel
于 2016-08-01T14:26:12.550 に答える