installing ubuntu on virtual machine code example

Example 1: how to install virtualbox in ubuntu

wget –q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- | sudo apt-key add -
#use codename of your linux version,for my case focal is codename for 
#ubuntu 20.04.1
sudo add-apt-repository "deb http://download.virtualbox.org/virtualbox/debian focal contrib"
#you can check codename of your system using command below
lsb_release -cs
sudo apt update && sudo apt install virtualbox-6.1

Example 2: how to activate virtual environment using ubuntu

# to activate run below command from your project-virtualenv directory
source my-project-env/bin/activate
# to deactivate run below command
deactivate