0

我正在使用亚马逊 Linux。我没有 sudo 并且想将软件包安装到我的家庭目录中。所以我正在尝试以下方法,但出现错误,

“没有为 awscii 找到匹配的分布”

[myuser@mymachine ~]$ pip install --user awscii
DEPRECATION: Python 2.6 is no longer supported by the Python core team, please upgrade your Python. A future version of pip will drop support for Python 2.6
Collecting awscii
/home/myuser/.local/lib/python2.6/site-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
/home/myuser/.local/lib/python2.6/site-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
  Could not find a version that satisfies the requirement awscii (from versions: )
No matching distribution found for awscii
[myuser@mymachine ~]$

将 python 包安装到我的主目录的正确方法是什么?

4

1 回答 1

1

默认ec2-user具有 sudo 权限,因此您应该能够升级您的 python 版本

$ sudo yum update

我认为这只应该甚至将您升级到python27。

如果不是如果你想安装 python 27

$ sudo yum install python27

如果你想安装 python 3

$ sudo yum install python34
于 2017-05-12T20:27:50.513 回答