I need to pass a flag of --no-deps to one of my packages in my requirements.txt file to ignore the dependencies of a package. I've tried putting it above, below, before, and after the package to no avail. I can do it by itself no problem but not within a requirements.txt file
pip install <package> --no-deps
requirements.txt
<package> --no-deps
Can anyone help me with this?