Hello, this is Kaoru.
This time, I will introduce How to save the installed package of Python and install the saved environment to another environment at once . ..
After creating an environment with various packages installed, list the packages in it " r e requirements.txt " Outputs to a file with a package list.
Then, you can install the packages in a batch to the new virtual environment from the list of "requirements.txt".
See previous articles on installing
packages.
<a href="https://kaworublog.com/python-package-install/" target="_blank" rel="noreferrer noopener" title="https://kaworublog.com/python-package-install"/"> [Installation method using pip command of Python package (library)]
I posted it on my blog. https://kaworublog.com/python-requirements-txt/
Recommended Posts