33

I am starting to understand the advantages of virtualenv. Now, I have created virtualenv folder named venv by doing virtualenv venv.

Now my question is, Is it useful to push this folder to github or should I add it to .gitignore?

phd
  • 82,685
  • 13
  • 120
  • 165
Sreekar Mouli
  • 1,313
  • 5
  • 25
  • 49

1 Answers1

49

You should add it to gitignore file. Then, you should create requirements.txt file and populate it with the packages you have installed. Then, on your production server, create the virtual environment and run pip install -r requirements.txt.

Read this to learn more about the requirements file.

Nestor Yanchuk
  • 1,186
  • 8
  • 10