Say I have a virtualenv
environment myenv1
and another, myenv2
. I have some packages installed in myenv1
, and I would like to install them on myenv2
as well. Is there a way to install them in myenv2
using myenv1
?
I referred to the following link, but apparently that requires a requirement.txt
to be present.
However, I have installed many packages on the go, and I do not have a prepared requirement.txt
for myenv1
. Also, the second step requires downloading the required packages again to a folder. Is there a way to achieve the said without downloading anything again?