I've been given a deep learning model developed in linux OS. I am using Windows10 OS.
While trying to replicate it on my local (windows) machine I faced a problem when trying to download multiple requirements.
requirments.txt looks something like this:
apturl==0.5.2
asn1crypto==0.24.0
bleach==2.1.2
Brlapi==0.6.6
certifi==2020.11.8
I know that apturl, Brlapi are linux packages therefore I take it out of requirements.txt file and run it in Dockerfile using following command
RUN apt update && apt install -y htop python3-dev wget
apturl==0.5.2
Brlapi==0.6.6
since requirements.txt contain lots of packages to be installed and I do not know which belong to linux is there easy way to separate them? Right now I am running it and when error occurs on certain package, google it then if it belong to linux, move it do Dockerfile command to install.
Am I just supposed to know which packages belong to which and separate them on my own?
Thanks in advance!
question from:
https://stackoverflow.com/questions/65896709/way-to-differentiate-linux-packages-from-requirements-txt 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…