python + how to remove the message “cryptography is not installed, use of crypto disabled”

試著忘記壹切 提交于 2021-01-28 19:09:57

问题


First time programming in python and I guess you will notice it after reading my question: + How can I remove the message "cryptography is not installed, use of crypto disabled" when running the application?

I have created a basic console application using the pyinstaller tool and the code is written in python. When I run the executable, I am getting the message "cryptography is not installed, use of crypto disabled". The program still runs, but I would prefer to get rid off the message.

Can someone help me?

Thanks in advance.


回答1:


cryptography and crypto are 2 different modules.

try:

pip install cryptography

pip install crypto



来源:https://stackoverflow.com/questions/60621653/python-how-to-remove-the-message-cryptography-is-not-installed-use-of-crypto

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!