SCIInstitute / Seg3D

Seg3D is a free volume segmentation and processing tool developed by the NIH Center for Integrative Biomedical Computing at the University of Utah Scientific Computing and Imaging (SCI) Institute.
108 stars 47 forks source link

Add scipy stack to python #177

Open a-y-khan opened 7 years ago

a-y-khan commented 7 years ago

Add the scipy stack (includes numpy) to the python external. Might be tricky on Windows, and Mac OS X because of the framework setup.

thoth291 commented 7 years ago

Why don't you just let users to link their custom python modules from wherever they have them by using this line in their python script:

#insert(0,... if you need to make your custom packages discoverable first
sys.path.append('/location/of/my/personal/site-packages')

It's a normal way of adding packages in the embedding world...