当我想通过 pip 安装某些东西时出现错误:“因此,加密中对 pip 的支持已被弃用”

当我想通过 pip 安装某些东西时出现错误:“因此,加密中对 pip 的支持已被弃用”

当我想要安装 youtube-dl 时python3 -m pip install --upgrade youtube-dl收到此错误消息:

/usr/lib/python3/dist-packages/secretstorage/dhcrypto.py:15: CryptographyDeprecationWarning: Python 3.6 is no longer supported by the Python core team. Therefore, support for it is deprecated in cryptography. The next release of cryptography (40.0) will be the last to support Python 3.6. from cryptography.utils import int_from_bytes Defaulting to user installation because normal site-packages is not writeable Requirement already satisfied: youtube-dl in ./.local/lib/python3.6/site-packages (2021.12.17)

问题

  1. 这是什么意思?

  2. 最后一段是什么意思:Defaulting to user installation because normal site-packages is not writeable Condition already met: youtube-dl in ./.local/lib/python3.6/site-packages (2021.12.17)

答案1

您收到的这个错误信息只是一个警告,它向您表明您的 pyhon 版本不再受支持,并且不受 Python 核心团队的支持,并且“加密”的下一个版本将是最后一个支持 Python 3.6 的版本,总的来说它不会影响 youtube-dl 的安装,不用担心

然后输出的最后一段只是表明 youtube-dl 安装成功,该消息的意思是安装是在用户本地存储库中完成的,而不是在系统目录中完成的,因为它没有写入权限,这又是一条正常消息

相关内容