I installed the Smalltalk language from source. The binary was placed in /usr/local/bin/. For some reasons i uninstalled it and installed the version existing in the synaptic package manager which places the binary in /usr/bin/. Now running gst (GNU Smalltalk) in the terminal will search for the binary in /usr/local/bin/, as this path has been set during the ./configure
of my source-installation. How can i instruct it to look into the correct path (/usr/bin)?
Asked
Active
Viewed 284 times
0
echo $PATH
? – Sparhawk Mar 08 '18 at 09:11grep 'PATH=' ~/.bashrc
? (Please tag me with@Sparhawk
so I am notified of any replies.) Also, does the binary in/usr/local/bin/
still exist? – Sparhawk Mar 08 '18 at 09:17ls -s
) usingwhich smalltalk
(or whatever it is you use to run the program) that points to your old location/usr/local/bin
– guiverc Mar 08 '18 at 09:20