1

I have installed NuSMV using the readme provided, however when I try to use the NuSMV command, I get the following message: -bash: NuSMV: command not found

There isn't much information on the internet about this, so I'd appreciate any help

Patrick Trentin
  • 7,126
  • 3
  • 23
  • 40
user3531263er
  • 423
  • 1
  • 4
  • 20

2 Answers2

1

Going to my home directory, and creating a new bash profile and appending the bin directory with the NuSMV executable made it work just fine.

user3531263er
  • 423
  • 1
  • 4
  • 20
1

How to make it work on MacOSX


got to this link : http://nusmv.fbk.eu/

click
NuSMV 2.6.0 is OUT!

Select : NuSMV binaries image

Fill out the details and register : you will be able to download a zip file, extract it and copy it anywhere you want. Now we need to set the path.

Open terminal and do something like this: Add the directory /opt/nusmv-X.Y.Z/bin to your command search PATH environment variable. E.g. for bash shell:

% export PATH=${PATH}:/opt/nusmv-X.Y.Z/bin

set the NUSMV_LIBRARY_PATH environment variable. E.g. for bash shell:

% export NUSMV_LIBRARY_PATH=/opt/nusmv-X.Y.Z/share/nusmv

Now you are ready to run and enjoy NuSMV.

% NuSMV -int # to run the interactive mode

Farina Ali
  • 11
  • 5