python安装依赖库

先查看pip3指向的python版本
pip3 -V
如果不是python3,可以使用以下命令安装依赖
python3 -m pip install pycryptodome
同理,python2安装依赖库也可以使用
python2 -m pip install pycryptodome

你可能感兴趣的:(python安装依赖库)