Made python scripts runnable directly on Linux.

Added execute bit and shebang line to start the python3 interpreter.
This commit is contained in:
Petter Reinholdtsen 2025-07-17 08:15:36 +02:00
commit 532c5e1b18
2 changed files with 4 additions and 0 deletions

2
spacevoxelviewer.py Normal file → Executable file
View file

@ -1,3 +1,5 @@
#!/usr/bin/env python3
import numpy as np import numpy as np
import matplotlib.pyplot as plt import matplotlib.pyplot as plt
from astropy.io import fits # For reading FITS files from astropy.io import fits # For reading FITS files

2
voxelmotionviewer.py Normal file → Executable file
View file

@ -1,3 +1,5 @@
#!/usr/bin/env python3
""" """
pyvista_interactive_view_with_rotation_history.py pyvista_interactive_view_with_rotation_history.py