We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I try to install img2table into a docker container on my raspberrypi.
Here my commands raspberrypi commands :
$ uname -a Linux raspberrypi 6.1.21-v7+ #1642 SMP Mon Apr 3 17:20:52 BST 2023 armv7l GNU/Linux
$ uname -m armv7l
Here my Dockerfile :
FROM python:3.9 WORKDIR /var/www/html/python RUN apt update RUN apt install -y build-essential zlib1g-dev libncurses5-dev libgdbm-dev libnss3-dev libssl-dev libreadline-dev libffi-dev wget cmake RUN apt install -y m4 RUN apt install -y cargo RUN pip install img2table==1.2.8 RUN pip install img2table[paddle] ENTRYPOINT [ "python3 pdf2ics.py" ]
I don't know Python very well so I tried FROM python:3.9 but also 3.10, 3.11, 3.12 I tried with and without RUN pip install img2table==1.2.8
FROM python:3.9
RUN pip install img2table==1.2.8
The result is always a build error
Here the log of my last docker build (according to Dockerfile) : pip_results.txt
Someone could tell me what I did wrong ?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I try to install img2table into a docker container on my raspberrypi.
Here my commands raspberrypi commands :
Here my Dockerfile :
I don't know Python very well so I tried
FROM python:3.9
but also 3.10, 3.11, 3.12I tried with and without
RUN pip install img2table==1.2.8
The result is always a build error
Here the log of my last docker build (according to Dockerfile) :
pip_results.txt
Someone could tell me what I did wrong ?
The text was updated successfully, but these errors were encountered: