Installation guide for Freshers
A guide to help you through the basic installation for ubuntu!
Brave installation:
sudo snap install braveJoplin installation:
sudo apt update
sudo apt install snapd
sudo snap install joplin-desktopDocker:
sudo apt install docker.ioType in the following to verify if docker has been installed:
sudo dockerPostman:
sudo snap install postmanApt installation:
sudo apt update
sudo apt install snapdInstall Visual Studio Code:
sudo snap install --classic codeInstall zoom:
sudo snap install zoom-clientInstall slack:
sudo snap install slack --classicInstall git:
sudo apt install gitAdd ssh:
ssh-keygen -t rsa -b 4096 -C "youremail@gmail.com"
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/id_rsa
cat ~/.ssh/id_rsa.pubOnce you're done with the above commands, copy the SSH key generated and add it in GitHub.
To do so, go to settings on GitHub, then you will find SSH and GPG keys on the left hand side panel. Go into it and add in the SSH key generated and name it.
Mini conda installation:
cd /tmp
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
chmod +x Miniconda3-latest-Linux-x86_64.sh
./Miniconda3-latest-Linux-x86_64.shOnce you're done with the above steps, close the terminal and open it again. Then type in the following command:
conda config --set auto_activate_base falseTo create a new environment, follow the command below:
conda create -n py38 -y python=3.8To activate and deactivate the environment, type in the commands below:
conda activate py38
conda deactivateLast updated
Was this helpful?
