Попытка установить пакет в мой домашний каталог приводит к ошибке

Я использую Amazon 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 в мой домашний каталог?

1 ответ

По умолчанию ec2-user имеет привилегии sudo, поэтому вы должны иметь возможность обновить версию Python

$ sudo yum update

Я думаю, что это только должно обновить вас до python27.

Если нет, если вы хотите установить Python 27

$ sudo yum install python27

Если вы хотите установить Python 3

$ sudo yum install python34
Другие вопросы по тегам