What I would like to do is to save all the dependencies to a file which is the same as package.json
and when I go to another computer, I only have to do something like conda install
to install all the dependencies of the project. Those packages will not be installed globally, only in the project folder. I know that I can create a virtual environment with conda
but there is no file which contains the list of all the dependencies.
I search for that but cannot find any sufficient answers: Is there a project file support like npm/package.json for Python's pip?