Discord.py bot dont have certificate(Discord.py 机器人没有证书)
问题描述
Yesterday I made a bot and everything was working, today when I try to run my code I have this error:
ClientConnectorCertificateError(aiohttp.client_exceptions.ClientConnectorCertificateError: Cannot connect to host discordapp.com:443 ssl:True [SSLCertVerificationError: (1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: certificate has expired (_ssl.c:1108)')]
I am using win10, python 3.8, and pycharm. I saw a similar problem on StackOverflow but the solution Is not working for me.
Create a virtual environment in Anaconda and adding it as an interpreter in Pycharm.
Creation of the environment
conda create -n test_env python=3.8 anaconda
Documentation of conda:
-n test_env sets the name of the environment to test_env
python=3.8 anaconda says that you want to use in this environment python in version 3.8. You can put there all the things you need, separated with spaces, e.g. sqlite
matplotlib
requests
and specify their versions the same way as for python.
Activation
conda activate test_env
Deactivation
conda deactivate
Getting rid of it
conda remove -n test_env --all
Add env to pycharm
1.In the Settings/Preferences dialog Ctrl+Alt+S, select Project | Project Interpreter. Click the The Configure project interpreter icon and select Add.
In the left-hand pane of the Add Python Interpreter dialog, select Virtualenv Environment. The following actions depend on whether the virtual environment existed before.
here Please check this github issue here.
Basically navigate to your
Applications/Python 3.8/
folder and double click theInstall Certificates.command
.
Try running this same program on 3.8 and run the install certificates command.
You can directly run below instruction in conda prompt or terminal:
pip install certifi
Or download this script and run it.
这篇关于Discord.py 机器人没有证书的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Discord.py 机器人没有证书


基础教程推荐
- 在 Python 中将货币解析为数字 2022-01-01
- Python 中是否有任何支持将长字符串转储为块文字或折叠块的 yaml 库? 2022-01-01
- 对多索引数据帧的列进行排序 2022-01-01
- 在 Django Admin 中使用内联 OneToOneField 2022-01-01
- 比较两个文本文件以找出差异并将它们输出到新的文本文件 2022-01-01
- Kivy 使用 opencv.调整图像大小 2022-01-01
- 究竟什么是“容器"?在蟒蛇?(以及所有的 python 容器类型是什么?) 2022-01-01
- matplotlib 设置 yaxis 标签大小 2022-01-01
- Python,确定字符串是否应转换为 Int 或 Float 2022-01-01
- kivy 应用程序中的一个简单网页作为小部件 2022-01-01