ERROR: Could not find a version that satisfies the requirement kaleido (from versions: none)
ERROR: No matching distribution found for kaleido
ERROR: Service 'django' failed to build: The command '/bin/sh -c pip install kaleido' returned a non-zero code: 1
my dockerfile does the following thats relevent:
FROM python:3.7.4-alpine
RUN pip install kaleido
RUN pip install -r requirements.txt
i get the same issue when i added kaleido the the requirements.txt and remove the RUN pip install kaleido command.
I have also tried adding versions, i get the same issues.
Also Tried running the command RUN install https://github.com/plotly/Kaleido/releases/download/v0.0.3/kaleido-0.0.3-py2.py3-none-manylinux2014_x86_64.whl
Step 8/13 : RUN install https://github.com/plotly/Kaleido/releases/download/v0.0.3/kaleido-0.0.3-py2.py3-none-manylinux2014_x86_64.whl
---> Running in 528ab1a4e2e8
BusyBox v1.30.1 (2019-06-12 17:51:55 UTC) multi-call binary.
Usage: install [-cdDsp] [-o USER] [-g GRP] [-m MODE] [-t DIR] [SOURCE]... DEST
Copy files and set attributes
-c Just copy (default)
-d Create directories
-D Create leading target directories
-s Strip symbol table
-p Preserve date
-o USER Set ownership
-g GRP Set group ownership
-m MODE Set permissions
-t DIR Install to DIR
ERROR: Service 'django' failed to build: The command '/bin/sh -c install https://github.com/plotly/Kaleido/releases/download/v0.0.3/kaleido-0.0.3-py2.py3-none-manylinux2014_x86_64.whl' returned a non-zero code: 1
make: *** [build] Error 1
all i want is to be able to save a plotly graph to a file but orca is crazy mission with docker, was hoping the recommended kaleido would be less of a mission to install and get working
my dockerfile does the following thats relevent:
i get the same issue when i added kaleido the the requirements.txt and remove the
RUN pip install kaleidocommand.I have also tried adding versions, i get the same issues.
Also Tried running the command
RUN install https://github.com/plotly/Kaleido/releases/download/v0.0.3/kaleido-0.0.3-py2.py3-none-manylinux2014_x86_64.whlall i want is to be able to save a plotly graph to a file but orca is crazy mission with docker, was hoping the recommended kaleido would be less of a mission to install and get working