0

システムのクリーン インストールを自動化しているときに、次のような問題に遭遇しました。

インストールします

sudo apt-get -y install libssl-dev libffi-dev
pip install pyopenssl
pip install service_identity

そして、後で私は

pip install identity-toolkit-python-client

この最後のコマンドの結果は

Installing collected packages: httplib2, rsa, oauth2client, pyOpenSSL, simplejson, identity-toolkit-python-client
  Found existing installation: pyOpenSSL 0.15.1
    Uninstalling pyOpenSSL-0.15.1:
      Successfully uninstalled pyOpenSSL-0.15.1
Successfully installed httplib2-0.9.2 identity-toolkit-python-client-0.1.7 oauth2client-1.5.1 pyOpenSSL-0.14 rsa-3.2 simplejson-3.8.1

する

import OpenSSL
OpenSSL.version.__version__

プリントアウト0.14

具体的な理由はありますか

install_requires = [
  'oauth2client>=1.3.2',
  'pyOpenSSL==0.14',
  'simplejson>=2.3.2',
]

https://github.com/google/identity-toolkit-python-client/blob/master/setup.pyでバージョン 14 にロックされていますか?

これはシステムのセキュリティ上の問題になる可能性がありますか?

4

1 に答える 1

1

ダニエルさん、ご質問ありがとうございます。修正されたものは、たった今githubに提出されました。

于 2015-11-04T04:13:42.223 に答える