Open ekg opened 2 years ago
@ekg Hello, how did this error of yours finally solve, I also encountered the same error. Looking forward to your response.
I did not solve it.
On Thu, Apr 6, 2023, 11:45 ywxue00 @.***> wrote:
@ekg https://github.com/ekg Hello, how did this error of yours finally solve, I also encountered the same error. Looking forward to your response.
— Reply to this email directly, view it on GitHub https://github.com/DRL/blobtools/issues/123#issuecomment-1498780446, or unsubscribe https://github.com/notifications/unsubscribe-auth/AABDQEJXWDDWQE22L6T5ZNTW72GDBANCNFSM6AAAAAAQQ63Y2M . You are receiving this because you were mentioned.Message ID: @.***>
By changing from conda to pip in the Dockerfile, I was able to successfully install the requirements and get the container working. Incase anyone runs into the same issue my docker File looks like this:
FROM continuumio/miniconda3
RUN git clone https://github.com/DRL/blobtools.git WORKDIR blobtools RUN pip install -r requirements.txt RUN ./blobtools -h
RUN wget ftp://ftp.ncbi.nlm.nih.gov/pub/taxonomy/taxdump.tar.gz -P data/ RUN tar zxf data/taxdump.tar.gz -C data/ nodes.dmp names.dmp RUN ./blobtools nodesdb --nodes data/nodes.dmp --names data/names.dmp ENV PATH="$PATH:/blobtools"
I'm unable to build using docker:
This crashes and burns:
I actually tried docker because I got the exact same error when building in a conda environment. It looks like something has gone wrong in bioconda's dependencies?