Tuesday, January 30, 2024

[SOLVED] Unable to locate package virtualenv in ubuntu-13 on a virtual-machine

Issue

When i try to run the command:

sudo apt-get install virtualenv

The error I get in response is:

E: Unable to locate package virtualenv


Solution

Try This :

sudo apt-get install software-properties-common
sudo apt-add-repository universe
sudo apt-get update
sudo apt-get install virtualenv


Answered By - Rashid Obaidi
Answer Checked By - Pedro (WPSolving Volunteer)