noneplugin / nonebot-plugin-boardgame

适用于 Nonebot2 的棋类游戏插件
43 stars 5 forks source link

安装时报错,html_render插件也安装了,不知道啥情况 #15

Closed 2018PAN closed 1 year ago

2018PAN commented 1 year ago

image

MeetWq commented 1 year ago

这种情况应该是有别的插件使用了 nonebot_plugin_htmlrender 但没有用 require 声明 你需要手动加载 nonebot_plugin_htmlrender: 在 bot.py 里面 nonebot.load_plugin("nonebot_plugin_htmlrender")

2018PAN commented 1 year ago

这种情况应该是有别的插件使用了 nonebot_plugin_htmlrender 但没有用 require 声明 你需要手动加载 nonebot_plugin_htmlrender: 在 bot.py 里面 nonebot.load_plugin("nonebot_plugin_htmlrender")

还是报一样的错误

MeetWq commented 1 year ago

看看你的 bot.py 是怎么写的

2018PAN commented 1 year ago

看看你的 bot.py 是怎么写的

好像解决了,把init.py中的require("nonebot_plugin_htmlrender")注释掉了,没发现bug

MeetWq commented 1 year ago

使用 require 是 nonebot 推荐的写法 你这样碰到别的用了 require 的插件还会报错(

2018PAN commented 1 year ago

使用 require 是 nonebot 推荐的写法 你这样碰到别的用了 require 的插件还会报错(

好的,我看一下哪个插件调用htmlrender没require,调一下,非常感谢