Using git to manage virtualenv state: will this cause problems?

后端 未结 3 645
灰色年华
灰色年华 2021-02-01 20:16

I currently have git and virtualenv set up in a way which exactly suits my needs and, so far, hasn\'t caused any problems. However I\'m aware that my setup is non-standard and I

3条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-02-01 21:01

    If you have any -e items in your requirements.txt - in other words if you have any editable dependencies as described in the format that are using the git version control system you will most likely run into issues when your src directory is committed. If you just add /src to your .gitignore then you can avoid this problem, but often the installation just adds a pointer in site-packages to this location, so you need it!

提交回复
热议问题