Answers for "copy venv to another folder linux"

0

copy venv to another folder linux

# while using existing virtualenv
(oldenv): pip freeze > requirements.txt

# after creating and logged-in to new virtualenv
(newenv): pip install -r requirements.txt

# where requirements.txt is the same file created using (oldenv)
Posted by: Guest on May-28-2021

Code answers related to "copy venv to another folder linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language