anthonyw12123 / 4chanwebscraper

A primitive web scraper using Python.
MIT License
0 stars 0 forks source link

Python Virtual Environment should not be in the repository #17

Closed cdsimpkins closed 8 years ago

cdsimpkins commented 8 years ago

the virtual environment contains compiled python binaries and libraries that are unique to the user's machine. this may cause problems when another user takes up the build. remove it from the repo and add it to the .gitignore

anthonyw12123 commented 8 years ago

venv is already in the gitignore file. I'll research why it isn't excluding it.

anthonyw12123 commented 8 years ago

Fix is in 1.1

cdsimpkins commented 8 years ago

you probably came across this, but in answer to "why is it in there" .gitignore only works on files that are "new" to the repo. if you tracked venv before adding it to .gitignore, it doesn't remove it from the repo.