[Neuroimaging] Problem with PySurfer module in Python3

Eric Larson larson.eric.d at gmail.com
Thu Jun 11 11:48:12 EDT 2020


>
> But Python3 gives me an error that this module was not found. Any ideas on
> what I missed?
>

On some systems you have to be careful about `python` vs `python3` and
`pip` vs `pip3`. You might need to use `pip3`, or more explicitly perhaps
`python3 -m pip` to run the command, i.e.:

python3 -m pip install PySurfer

You might currently hit a problem with Mayavi because they haven't released
an update to deal with VTK9, in which case you might also need to do:

python3 -m pip install vtk
https://github.com/enthought/mayavi/archive/master.zip

And then try the PySurfer line.

Eric
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/neuroimaging/attachments/20200611/3e436043/attachment.html>


More information about the Neuroimaging mailing list