How do I uninstall Gurobi from Mac
Answered
0
-
See the detailed instructions in the article "How do I install Gurobi Optimizer?".
0 -
Sorry, I read your question as "install" and did not realize you were looking for "uninstall". Sorry about that.
- Remove the Gurobi installation directory. If you have installed the Gurobi Optimizer in the default location, the command would be:
sudo rm -r /Library/gurobi1201 # replace 1201 with whatever Gurobi version you are using
- Find Gurobi symbolic links by running the command below.
ls -l /usr/local/bin | grep gurobi
- Unlink the symbolic links by running the following commands:
sudo unlink /usr/local/bin/gurobi*
sudo unlink /usr/local/bin/grb*- Remove the Gurobi license file
0 -
thank you very much,when i unlinking the symbolic links by running the following commands
sudo unlink /usr/local/bin/gurobi* sudo unlink /usr/local/bin/grb*
i can still see the gurobi symbolic links by running the command below
ls -l /usr/local/bin | grep gurobi
it is right or i should enter other command, thank you
0 -
You can simply remove the files in
/usr/local/bin/gurobi* /usr/local/bin/grb*
Using sudo
Cheers,
David0 -
thanks, it helps
0
Please sign in to leave a comment.
Comments
5 comments