前提・実現したいこと
ClientConnectorCertificateErrorのエラーを解消したい。
動作環境
Python3.9.6
macOS 11.4
発生している問題・エラーメッセージ
例外が発生しました: ClientConnectorCertificateError Cannot connect to host discord.com:443 ssl:True [SSLCertVerificationError: (1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1129)')] The above exception was the direct cause of the following exception: File "/Users/ユーザー名/Documents/discordbot.py", line 15, in <module> bot.run("トークンID")
該当のソースコード
python
1import discord 2from discord.ext import commands 3 4bot = commands.Bot(command_prefix="!") 5bot.remove_command("help") 6 7@bot.event 8async def on_ready(): 9 print("起動完了") 10 11@bot.command() 12async def test(ctx): 13 await ctx.send("test.ok!") 14 15bot.run("?????????")
試したこと
①最終行を変更。
# Botの起動とDiscordサーバーへの接続 client.run(TOKEN)
②Discord.pyの更新。
pip install -U discord.py
検索したり、色々試してみましたが全く解消できませんでした。
お手数お掛けしますが教えて下さい。
あなたの回答
tips
プレビュー