-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
青龙无法安装python3的pycryptodome依赖 #1645
Comments
正常 这是由于apline简版系统导致 很多依赖也是无法下载 例如cx_oracle 我遇到的 |
linux 里把这几个依赖装上 |
gcc应该sdk会自动装,前四个应该就行了 |
无法构建,你的库不支持python3.10 |
canvas 安装失败,linux 添加如下依赖
|
cryptg 安装失败,linux 添加如下依赖
|
@whyour 感谢作者,我遇到类似的问题,无法pip install ddddocr。 原因如下:
我尝试fork 修改dockerfile 为基于python-slim的版本(这个版本可以安装),暂时没有成功发布到DockerHub上,因此真诚建议作者是否可以新建一个 基于 python-slim的版本的镜像,用于性能更好的,不那么在乎镜像体积的设备使用。以下是我修改的代码,仅供参考。
|
依赖管理也需要改下,如果有好的自动化 slim 的镜像,欢迎提 PR |
多谢作者回复,实不相瞒,我在Windows 下并没有成功 Build 出我想要的镜像。我目前没有排查出问题出在哪里,我也看了下作者你的 Github Action中关于docker build & push 的部分,static 静态资源也是必须项。 我对于Dockerfile 和 Github Action 都三脚猫,暂时没有完整的解决方案,所以无法PR。 |
我也遇到了,后面通过ddddocr直接搭了个api解决的,反正都是在docker里面运行 也不算麻烦。 |
我重新做了个镜像,内置了从源码编译的DDDDOCR,但是,我用telegram bot,好像也有问题,ssl 的错啦,gcc的错啦。。我还在研究怎么把原是镜像改成slim。 |
遇到类似问题。 在容器内部安装 playwright 提示平台不支持。 从 YusukeIwaki/playwright-python-remote 找到解决办法: FROM python:3.9-alpine
RUN apk add --no-cache --virtual .install-deps build-base curl git \
&& pip install git+https://github.com/microsoft/[email protected] \
&& pip install git+https://github.com/YusukeIwaki/playwright-python-remote \
&& apk del .install-deps 或者在外部搭建 playwright-server,内部使用 playwright_remote 连接 websocket 后调用。 from playwright_remote.sync_api import sync_playwright_remote
with sync_playwright_remote('ws://127.0.0.1:8080/ws') as playwright:
with playwright.chromium.launch() as browser:
page = browser.new_page()
page.goto('https://github.com/YusukeIwaki')
page.screenshot(path='YusukeIwaki.png') |
可以使用 whyour/qinglong:debian 镜像 |
谢谢,正头疼怎么改 alpine 的 dockerfile 呢。 |
无用。这些依赖安装了,但那个还是不行 |
添加了 还是安装不成功日志 - canvas ERROR: Ignored the following versions that require a different python version: 0.1.4 Requires-Python >=3.12,<4.0 |
你不会看日志吗,python下的canvas支持python版本>=3.12,你的版本低,当然报错 |
大佬有什么解决办法吗... |
这几个依赖装完后还是不行,canvas依然安装失败,提示如下: |
Qinglong version
V2.14.7
Steps to reproduce
请见附图。
What is expected?
我要运行一个脚本必须要有这个依赖pycryptodome,想要安装。
What is actually happening?
无法安装这个python3 的 pycryptodome依赖
System Info
No response
Any additional comments?
No response
The text was updated successfully, but these errors were encountered: