C
clockshell
Guest
Hi!
I just wondered how you guys handle non-installed programs. Just to make myself clear: I mean, for example Zotero. I downloaded a tarball from the official homepage and extracted the content to ~/bin.
I used to cd into ~/bin/Zotero_linux-x86_64 and run ./zotero to start the standalone program. Today I added the following lines into my .profile
and voila, I can start Zotero with 'zotero' from everywhere on my system - I am proud of myself :3
although just gives 'zotero:' as output so I asked myself wether it is technically 'installed' or just running independently...?
Actually I asked myself this question many times and did not stumble over an answer so far. I hope somebody can help me get smarter
I just wondered how you guys handle non-installed programs. Just to make myself clear: I mean, for example Zotero. I downloaded a tarball from the official homepage and extracted the content to ~/bin.
I used to cd into ~/bin/Zotero_linux-x86_64 and run ./zotero to start the standalone program. Today I added the following lines into my .profile
Code:
# Zotero
if [ -d "$HOME/bin/Zotero_linux-x86_64" ] ; then
PATH=$HOME/bin:$PATH"
fi
Code:
whereis zotero
Actually I asked myself this question many times and did not stumble over an answer so far. I hope somebody can help me get smarter