Skip to content

Latest commit

 

History

History
36 lines (19 loc) · 542 Bytes

README.md

File metadata and controls

36 lines (19 loc) · 542 Bytes

自用青龙库

一、青龙运行python脚本缺少requests模块,请按以下方式安装:

1、进入青龙容器:

docker exec -it qinglong /bin/sh

2、安装requests模块

pip3 install requests

3、安装完成,退出容器

exit

二、青龙安装nodejs模块方法:

1、进入青龙容器:

docker exec -it qinglong /bin/sh

2、进入/ql/scripts目录

cd scripts

4、安装png-js模块

npm install -g png-js

安装jsdom模块

npm install -g jsdom

5、安装完成,退出容器

exit