I installed my first virtual environment using this commands below
Commands used:
apt-get update -y
apt-get install -y python3-venv
mkdir awesome_python_project
cd awesome_python_project
python3 -m venv awesome_venv
source awesome_venv/bin/activate
but I can't access it again, does anyone knows why?