Closed SamuelGabriel closed 2 years ago
Why do you do cat requirements.txt | xargs -n 1 -L 1 pip install instead of pip install -r requirements.txt?
cat requirements.txt | xargs -n 1 -L 1 pip install
pip install -r requirements.txt
It is used to ensure that pip installs the packages in order and one by one :)
Why do you do
cat requirements.txt | xargs -n 1 -L 1 pip install
instead ofpip install -r requirements.txt
?