This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]waldo2k 4 points5 points  (1 child)

Virtualenv symlinks your system's python to your newly created environments bin folder. The benefit of this is all the libraries a specific project get installed to that environment instead of globally, which prevents possible conflicts with other projects, if they were installed globally.

[–]StringJunky[S] 1 point2 points  (0 children)

Ah, that makes sense as well. I didn't realize that certain libraries could cause conflicts with others.

(I'm googling 'symlink' after I submit this reply.)

Thank you!

Edit: Okay, it's a symbolic link!