Hello, How can I backup virtual environment python?
Hello, How can I backup virtual environment python?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Rajanikant HawaldarPosted Mar 8, 2021, 12:07 PM
Sagar LadPosted Aug 19, 2021, 2:24 PM
Its easy to just freeze the environment into a text file and install from it later!
pip freeze > requirements.txt
then when you want to install
pip install -r requirements.txt
RameshPosted Mar 8, 2021, 12:09 PM