LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   put avogadro.1.0 in path (https://www.linuxquestions.org/questions/linux-newbie-8/put-avogadro-1-0-in-path-4175477077/)

sryzdn 09-14-2013 12:54 AM

put avogadro.1.0 in path
 
Hi,

My question is on a software I installed from: http://avogadro.openmolecules.net/wiki/Main_Page
I had previously installed avogadro.1.0.3 through "yum". Now, I got the source of avogadro.1.1.0 and installed it manually.

Now I want to remove avogadro.1.03 and put the new one on the path. I would be grateful if you kindly help me.

knudfl 09-14-2013 08:25 AM

Remove avogadro-1.0.3 : # yum remove avogadro


Installing avogadro-1.1.0 to a system path :
$ cd avogadro-1.1.0/ && mkdir build && cd build/
$ cmake ../ && make
# make install
... I.e. 'make install' will copy the executable 'avogadro'
to /usr/local/bin/, and the libraries to /usr/local/lib/,
the data to /usr/local/share/avogadro/**.

Warning : Version 1.1.0 may be buggy.

-

sryzdn 09-14-2013 09:09 AM

Quote:

Originally Posted by knudfl (Post 5027584)
... I.e. 'make install' will copy the executable 'avogadro'
to /usr/local/bin/, and the libraries to /usr/local/lib/,
the data to /usr/local/share/avogadro/**.

Warning : Version 1.1.0 may be buggy.

-

Thanks, I dumbly thought they are not copied there.


All times are GMT -5. The time now is 05:57 AM.