permission denied to run nnn

I installed nnn file manager with pkg install but when I try to run it from terminal, it gives me "7313: Permission denied". The user is in wheel group. I can run all the default programs and the ones I've installed myself.

groups:
Code:
notarobot wheel video

ls -lo /usr/local/bin/nnn:
Code:
-rwxr-xr-x  1 root  wheel  - 103056 Dec 17 11:05 /usr/local/bin/nnn
 
I had this problem today. I had $NNN_FIFO set to /tmp/nnn.fifo, to which I had for some reason lost ownership. The problem was (temporarily) solved by either rebooting or running `sudo chown $USER:$USER /tmp/nnn.fifo`.
 
Back
Top