Quanah Gibson-Mount added the comment:

Ok, so the general idea is to be able to install your software in a specific 
location and then symlink it back into another location (like /usr/local).  
This allows quick and easy software version swapping.  I've used it to do 
things like test mariadb vs mysql, or various builds of openldap.  It works 
well with perl too.

The issue I'm hitting here with python is with site packages.  I wanted to be 
able to install the specific versions of various modules into their own 
location, and link then back via stow, but python can't find them since the 
site path is the literal location of the install instead of the symlink'd 
location.  I ended up just installing the modules into the default python 
location to get around it by now, but it means I can't trivially swap out 
different versions the python modules now.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue19968>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to