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
It seems python 3.7 isn't being downloaded. As a result, the docker image does not build
#8 2.890 E: Couldn't find any package by glob 'python3.7' #8 2.890 E: Couldn't find any package by regex 'python3.7' #8 2.890 E: Unable to locate package python3.7-dev #8 2.890 E: Couldn't find any package by glob 'python3.7-dev' #8 2.890 E: Couldn't find any package by regex 'python3.7-dev'```
The text was updated successfully, but these errors were encountered:
I added the following code to install python3.7 :
https://hackthestuff.com/article/how-to-install-python-3-7-in-ubuntu
# Install python3.7 RUN sudo apt update RUN sudo apt install build-essential zlib1g-dev libncurses5-dev libgdbm-dev libnss3-dev libssl-dev libreadline-dev libffi-dev wget && wget https://www.python.org/ftp/python/3.7.4/Python-3.7.4.tgz && sudo tar xzf Python-3.7.4.tgz && cd Python-3.7.4 && sudo ./configure && sudo make && sudo make install && cd ..
Sorry, something went wrong.
I found this prebuilt docker image which I'm going to use instead:
https://quay.io/repository/encode-dcc/long-read-rna-pipeline
docker pull quay.io/encode-dcc/long-read-rna-pipeline:PIP-1234-pytest-wf_ac698810-5e1a-47c6-ac59-f1e98ee5974b
No branches or pull requests
It seems python 3.7 isn't being downloaded. As a result, the docker image does not build
The text was updated successfully, but these errors were encountered: