技术分享
报错如下:
```
ModuleNotFoundError: No module named 'Crypto'
```
尝试:
```
pip3 install Crypto
```
无用,遂搜索,找到解决方法:
```
pip3 install pycryptodome
```...