I'm a newbie of python and installing needed packages using miniconda. But I need to move current project to another environment and I have to install packages used in the project on the new virtual environment. When I use pipenv, I can install all dependancies like this
$pipenv install
Is there an equivalent way in conda? Or do I have to install packages one by one?
And if you can, would you please explain the principles conda and pipenv work? I know both conda and pipenv create virtual environment and install packages in the venv. What I want to know is how to manage the package list being installed on venv. For example, I want know about the Pipfile
and Pipfile.lock
. And the same in conda.
Thanks.