Sometimes I want to install software tools, such as Git, Screen, and the others on a Linux System, however, I find outselves without administraive priviledge. The first method comes to mind is to download the source code and to compile and to set it up. This method can be sometimes challenging due to numerous dependencies may also be missing on the system.
Recently it comes to me that we can do this via conda
. For instance, the following steps let me install both Git and Screen on a Linux system without administrative priviledge
- Download miniconda.
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
- Set up miniconda
bash Miniconda3-latest-Linux-x86_64.sh
- Initialize conda. Exit shell and get back in, and then
conda init
- Install Git via conda
conda install anaconda::git
- Install Screen via conda
conda install conda-forge::screen
- Find and install others ...
Some may think this method is overkill. However, it saves me tons of time to download and compile tons of dependencies. Is our own time more valuable?
Nice post. keep up with your writing skill.
ReplyDeletevisit Linux training in Pune