请问开发大佬是否可以导入python包?
Opened this issue · 6 comments
188334911 commented
devome commented
你需要先在容器中安装好你脚本中用到的module。
188334911 commented
感谢回复,我是想安装qbittorrent api,试过在网上搜索,给的答案都是通过pip安装,但是您镜像里没有装pip,我试着装了一下,结果导致容器里原本的脚本都不能用了,我也试过直接导入模块,运行起来还是报错
…---原始邮件---
发件人: ***@***.***>
发送时间: 2023年2月5日(周日) 上午7:17
收件人: ***@***.***>;
抄送: ***@***.******@***.***>;
主题: Re: [devome/dockerfiles] 请问开发大佬是否可以导入python包? (Issue #71)
你需要先在容器中安装你脚本中用到的模块。
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you authored the thread.Message ID: ***@***.***>
188334911 commented
能不能请简单的指导下怎么在qb容器里导入或者安装其他python模块或包呢
…---原始邮件---
发件人: ***@***.***>
发送时间: 2023年2月5日(周日) 上午7:17
收件人: ***@***.***>;
抄送: ***@***.******@***.***>;
主题: Re: [devome/dockerfiles] 请问开发大佬是否可以导入python包? (Issue #71)
你需要先在容器中安装你脚本中用到的模块。
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you authored the thread.Message ID: ***@***.***>
devome commented
参考环境变量清单,创建容器时EXTRA_PACKAGES
赋值py3-pip
,然后就有pip
了。然后比如需要qbittorrent-api
就pip install qbittorrent-api
。如果需要自动化,你可以参考相关问题之问题2,把pip
安装命令放在/data/diy/diy.sh
中。
devome commented
你想导入的好像是你这脚本名,你脚本名叫qbittorrentapi
,名叫qbittorrentapi
和脚本和名叫qbittorrent-api
的module
是有区别的,你自己要注意区分。
188334911 commented
使用这个办法已经成功装上了pip,并且安装了模块~脚本一切正常,感谢