0

我正在使用 Telebot 为 Telegram 制作 python 机器人

bot = telebot.TeleBot('TokenHere')
apihelper.proxy = {'https': 'socks5://user:password@127.0.0.1:1080'}
@bot.message_handler(commands=['start', 'help'])
def send_welcome(message):
    bot.reply_to(message, "Hello?")

我安装了最新版本:gunicorn、PySocks、pyTelegramBotAPI、requests 和 urllib3

仍然收到错误:

AssertionError: Not supported proxy scheme socks5

代理工作正常,我用另一个机器人检查了它。

4

1 回答 1

0

刚刚通过 yum 删除了一个 python-requests,并通过 pip 安装

于 2020-06-17T08:34:46.173 回答