-
Notifications
You must be signed in to change notification settings - Fork 53
Description
I have a super simple question. I have built a docker image for which I would like to install this library. I am able to install nipy (RUN pip install --user nipy==0.4.2
), but when I import it in a docker shell, I get the following error:
Traceback (most recent call last): File "<stdin>", line 1, in <module> ModuleNotFoundError: No module named 'nipy'
And mindboggle
itself does not appear to be able to be installed via pip. How would you recommend getting a copy of this library in a docker image? I don't want to use the existing mindboggle image as a base because I already have another image I am building off of. Hoping to hear that there is a line, or a couple of lines, I can add to my Dockerfile to install this without building off of the existing image.