I have Requirments.txt file where I have written all the packages I want to install, each package on new line.
like :
!pip install torch \
!pip install torchvision\
and etc...
How To loop over the file and install each package with for loop in python ?
Thanks.