I would like to create a requirements_all.txt file using make commands. I am using Anaconda.
I have tried the following but none have worked as intended.
requirements_all.txt:
conda list --export
This displays all of the packages I have installed in the terminal window, and does not create requirements_all.txt.
requirements_all.txt:
@echo conda list --export
This displays @echo conda list --export in the terminal window, and does not create requirements_all.txt.
requirements_all.txt:
@echo conda list --export > requirements_all.txt
This created a file called requirements_all.txt containing conda list --export.