Python pip installation Crypto is not available solution

Introduction

The Crypto module is a powerful encryption module in Python, providing many common encryption algorithms and tools. pycrypto and pycryptodome are crypto third-party libraries, pycrypto已经停止更新了. It is not recommended to install this library. pycryptodome are extended versions of pycrypto, and their usage is exactly the same as pycrypto.

  • Install
pip install pycryptodome
  • Specify domestic source installation
pip install -i https://pypi.douban.com/simple/ pycryptodome

Guess you like

Origin blog.csdn.net/weixin_43824520/article/details/133828018