私はUbuntu 14.04.5にspyder 2.2.5のpython 2.7.6を持っています。私はIpythonコンソールに接続できませんでしたので、私はスパイダーを更新することにしました:SNI警告のためにスパイダーを更新できません
pip install spyder --upgrade
以下のエラーが発生します。トップ1のテキストは次のとおりです。
/usr/local/lib/python2.7/dist-packages/pip/_vendor/requests/packages/urllib3/util/ssl_.py:318:SNIMissingWarning: HTTPS要求は行われましたが、TLSへのSNI(Subject Name Indication)拡張はこのプラットフォームでは利用できません。これにより、サーバーに不正なTLS証明書が提示され、検証に失敗する可能性があります。これを解決するために、新しいバージョンのPythonにアップグレードすることができます。詳細については、https://urllib3.readthedocs.io/en/latest/security.html#snimissingwarningを参照してください。
のフルスタックトレース:
/usr/local/lib/python2.7/dist-packages/pip/_vendor/requests/packages/urllib3/util/ssl_.py:318: SNIMissingWarning: An HTTPS request has been made, but the SNI (Subject Name Indication) extension to TLS is not available on this platform. This may cause the server to present an incorrect TLS certificate, which can cause validation failures. You can upgrade to a newer version of Python to solve this. For more information, see https://urllib3.readthedocs.io/en/latest/security.html#snimissingwarning.
SNIMissingWarning
/usr/local/lib/python2.7/dist-packages/pip/_vendor/requests/packages/urllib3/util/ssl_.py:122: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. You can upgrade to a newer version of Python to solve this. For more information, see https://urllib3.readthedocs.io/en/latest/security.html#insecureplatformwarning.
InsecurePlatformWarning
Collecting spyder
Downloading spyder-3.1.4-py2-none-any.whl (3.5MB)
100% |████████████████████████████████| 3.5MB 387kB/s
Requirement already up-to-date: pygments>=2.0 in /usr/local/lib/python2.7/dist-packages (from spyder)
Requirement already up-to-date: jedi>=0.9.0 in /usr/local/lib/python2.7/dist-packages (from spyder)
Requirement already up-to-date: pyflakes in /usr/local/lib/python2.7/dist-packages (from spyder)
Requirement already up-to-date: pylint in /usr/local/lib/python2.7/dist-packages (from spyder)
Requirement already up-to-date: nbconvert in /usr/local/lib/python2.7/dist-packages (from spyder)
Requirement already up-to-date: qtpy>=1.1.0 in /usr/local/lib/python2.7/dist-packages (from spyder)
Requirement already up-to-date: pyzmq in /usr/local/lib/python2.7/dist-packages (from spyder)
Collecting numpydoc (from spyder)
Downloading numpydoc-0.6.0.tar.gz
Exception:
Traceback (most recent call last):
File "/usr/local/lib/python2.7/dist-packages/pip/basecommand.py", line 215, in main
status = self.run(options, args)
File "/usr/local/lib/python2.7/dist-packages/pip/commands/install.py", line 335, in run
wb.build(autobuilding=True)
File "/usr/local/lib/python2.7/dist-packages/pip/wheel.py", line 749, in build
self.requirement_set.prepare_files(self.finder)
File "/usr/local/lib/python2.7/dist-packages/pip/req/req_set.py", line 380, in prepare_files
ignore_dependencies=self.ignore_dependencies))
File "/usr/local/lib/python2.7/dist-packages/pip/req/req_set.py", line 634, in _prepare_file
abstract_dist.prep_for_dist()
File "/usr/local/lib/python2.7/dist-packages/pip/req/req_set.py", line 129, in prep_for_dist
self.req_to_install.run_egg_info()
File "/usr/local/lib/python2.7/dist-packages/pip/req/req_install.py", line 412, in run_egg_info
self.setup_py, self.name,
File "/usr/local/lib/python2.7/dist-packages/pip/req/req_install.py", line 387, in setup_py
import setuptools # noqa
File "/usr/local/lib/python2.7/dist-packages/setuptools/__init__.py", line 12, in <module>
import setuptools.version
File "/usr/local/lib/python2.7/dist-packages/setuptools/version.py", line 1, in <module>
import pkg_resources
File "/usr/local/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 72, in <module>
import packaging.requirements
File "/usr/local/lib/python2.7/dist-packages/packaging/requirements.py", line 59, in <module>
MARKER_EXPR = originalTextFor(MARKER_EXPR())("marker")
TypeError: __call__() takes exactly 2 arguments (1 given)
私は運なしndg-httpsclient
、urllib3[secure]
のようないくつかの他のパッケージをインストールしてみました。まったく同じエラーがスローされます。私はPython自体をアップグレードすることはできません。誰かが助けることができますか?
注:python-dev libffi-dev libssl-dev
は既にインストールされています。
あなたは、最新の 'pip'、' setuptools'と 'requests'のバージョンがありますか?おそらく、Python自体を更新する良い時期かもしれませんが、2.7.6は "現在の"バージョン(2013年リリース)ではありません。少なくともPython-2を使用したい場合は2.7.13に更新してください。 – MSeifert
2.7.6はUbuntu 14.04のデフォルトのPythonです。私はそれを混乱させないように言われました。私の 'pip'はすでに最新バージョン(9.0.1)であり、'要求 '(2.14.2へ)と' setuptools'を最新バージョンに更新しました。しかし、スパイダーを更新するにはまだそのエラーがあります。 –
ええ、システムのpythonを置き換える必要はありません。 'virtualenv'や' conda'を使って別々のPythonインストールを管理することができます。しかし、それらはちょうど推測だった、私はそのエラーを見たことがない私はただの可能性のある原因を排除していた(そして、一般的にそれは最新のパッケージを持つことは悪い考えではない)。 :) – MSeifert