Try this first Re-register the module via SCRIPT > Feature Scripts.
Or go in to your bin folder and delete the NTX you have to look that up I cant remember…
1. GPU / CUDA / TensorFlow conflict
NXT v2 uses GPU acceleration. If your CUDA/cuDNN setup or GPU driver got updated/changed, the plugin can silently fail to launch.
Common case: PixInsight uses CUDA 11.8 for RC-Astro modules, but newer NVIDIA drivers default to CUDA 12+.
Check your bin
folder in PixInsight for cudart64_110.dll
(CUDA 11.0 runtime). If missing or mismatched, NXT won’t start.
Fix: Download the CUDA 11.8 runtime DLL and drop it into PixInsight/bin
.
and use a wrapper to start pi so it only sees CUDA 11.8
Copy paste this save as bat. double click it to open PI
@echo off
setlocal
set "PI_BIN=C:\Program Files\PixInsight\bin"
set "CUDA11_BIN=%ProgramFiles%\NVIDIA GPU Computing Toolkit\CUDA\v11.8\bin"
rem Prefer PI’s local DLLs first
set "PATH=%PI_BIN%;%PATH%"
rem Nuke CUDA 12.* from PATH for this process
for %%V in (0 1 2 3 4 5 6 7 8 9) do (
set "PATH=%PATH:%ProgramFiles%\NVIDIA GPU Computing Toolkit\CUDA\v12.%%V\bin;=%"
for %%M in (0 1 2 3 4 5 6 7 8 9) do (
set "PATH=%PATH:%ProgramFiles%\NVIDIA GPU Computing Toolkit\CUDA\v12.%%V%%M\bin;=%"
)
)
rem Add CUDA 11.8 bin after PI (fallback for any dll not in PI\bin)
if exist "%CUDA11_BIN%\cudart64_110.dll" set "PATH=%PI_BIN%;%CUDA11_BIN%;%PATH%"
rem TensorFlow logging + behaviour
set "TF_CPP_MIN_LOG_LEVEL=0"
set "TF_FORCE_GPU_ALLOW_GROWTH=TRUE"
set "CUDA_VISIBLE_DEVICES=0"
set "TF_LOG_DEVICE_PLACEMENT=1"
cd /d "%PI_BIN%"
start "" "%PI_BIN%\PixInsight.exe"
endlocal
2. Bad module registration
Sometimes PI has the .dll but it’s not properly registered.
Go to SCRIPT > Feature Scripts, remove NXT, then add it again pointing directly to the .dll
.
Restart PI.
3. Corrupted settings or cache
NXT writes prefs into PI’s src/config
folder. Corruption here can prevent launch.
Exit PI.
Delete (or rename) NoiseXTerminator-prefs.xpsm
inside PixInsight’s config folder (usually in %APPDATA%/Pleiades
).
Relaunch PI, it will rebuild fresh settings for NXT.
I am no expert and I might be completely mad !