
There are 4 different ways to run Python commands. I haven’t checked the pvpython.exe but is there an equivalent on mac?Īpparently the relationship is very complicated. The is in the /Applications/ParaView-5.5.2.app/Contents/Python/vtkmodules folder but adding it to the. ImportError: No module named vtkCommonCorePython But right from there is all errors:Įrror: Could not import vtkCommonComputationalGeometryįile “/Applications/ParaView-5.5.2.app/Contents/Python/paraview/simple.py”, line 41, in įile “/Applications/ParaView-5.5.2.app/Contents/Python/paraview/servermanager.py”, line 53, in įile “/Applications/ParaView-5.5.2.app/Contents/Python/paraview/vtk.py”, line 12, in Īll_m = importlib.import_module(‘paraview.pv-vtk-all’)įile init.py”, line 37, in import_moduleįile “/Applications/ParaView-5.5.2.app/Contents/Python/paraview/pv-vtk-all.py”, line 7, in įile “/Applications/ParaView-5.5.2.app/Contents/Python/vtkmodules/vtkCommonCore.py”, line 9, in pth file in the /usr/local/lib/python2.7/site-packages folder it will be added to the PYTHONPATH. It is even worse! I figured out that if I put the.
Paraview python programmable filter tutorial mac#
You may need this one too… I’m not sure: C:\Program Files\ParaView 5.4.1-822-g597adef-Qt5-Windows-64bit\binĪnd you need some combination of these in your PATH environment variable: C:\Program Files\ParaView 5.4.1-822-g597adef-Qt5-Windows-64bit\bin\Lib\site-packagesĬ:\Program Files\ParaView 5.4.1-822-g597adef-Qt5-Windows-64bit\binĬ:\Program Files\ParaView 5.4.1-822-g597adef-Qt5-Windows-64bit\bin\Libīut due to the Python version difference you will need to get Python 2.7 in order to work with ParaView’s python packages unless you build ParaView yourself and link against Python I was trying to test the other issue on my mac to see if the same happens. I believe the only folder you need to add to your PYTHONPATH environment variable is this one: C:\Program Files\ParaView 5.4.1-822-g597adef-Qt5-Windows-64bit\bin\Lib\site-packages Let me try to outline how I would set up the environment (disclaimer: I don’t have time to reboot into Windows, so this is not tested here). Although it shouldn’t be trying to load that particular file. This is the error generated by Python 3.6 when trying to run a Python 2.7 python file. I think I have to add the paths above here instead? Where are these paths stored? ‘C:\Users\foobar\AppData\Local\Programs\Python\Python36-32\lib\site-packages’] ‘C:\Users\foobar\AppData\Local\Programs\Python\Python36-32’, ‘C:\Users\foobar\AppData\Local\Programs\Python\Python36-32\lib’,

‘C:\Users\foobar\AppData\Local\Programs\Python\Python36-32\DLLs’, [’’, ‘C:\Users\foobar\AppData\Local\Programs\Python\Python36-32\python36.zip’, when I run import sys print(sys.path) in my shell I get:.I tied adding the python executable path C:\Users\foobar\AppData\Local\Programs\Python\Python36-32 too, as suggested here, but I still get the same error message.

