Cannot create venv as dependencies are unmet

Solution 1:

  1. Run software-properties-gtk

    1st tab: Enable main, universe, 2nd tab: Enable security, updates

  2. Update list when you exit or run

    sudo apt update

  3. Install virtual environment module (I expected it installed on vanilla image)

    sudo apt install python3.6-venv

  4. Create virtual env without using sudo

    python3 -m venv .venv

Btw, it is good to confirm which is the linked version python3 using

ls -l $(which python3)