Do the following steps on the source machine:
- workon [environment_name]
- pip freeze > requirements.txt
- copy requirements.txt to other PC
On the other PC:
- create a virtual environment using mkvirtualenv [environment_name]
- workon [environment_name]
- pip install -r requirements.txt
You should be done.
Other Resources:
- How to Copy/Clone a Virtual Environment from Server to Local Machine