当我尝试导入使用 pip3 安装的任何模块时,系统只会向我发送大量文本。对不起,我不能指定更好的,但我是 python 和 ubuntu 的新手。我尝试了命令 pip3 list 然后我得到了这个:
/usr/lib/python3/dist-packages/secretstorage/dhcrypto.py:15: CryptographyDeprecationWarning: int_from_bytes is deprecated, use int.from_bytes instead
from cryptography.utils import int_from_bytes
/usr/lib/python3/dist-packages/secretstorage/util.py:19: CryptographyDeprecationWarning: int_from_bytes is deprecated, use int.from_bytes instead
from cryptography.utils import int_from_bytes
在那之后,我得到了一些包及其版本的列表。我记得安装的软件包没有出现在列表中,例如 NumPy
或 random
。我正在使用 python 3.8
和 pip 3
。
一切都很完美,但我尝试安装了visual 或python 模块,之后,我遇到了那个错误。我想我尝试使用 pip 安装模块,然后使用 conda 安装模块。而且我不知道该怎么做。
答案 0 :(得分:1)
尝试升级加密库,如下所示:
pip install cryptography==3.3.2