I am trying to install python3-venv
ubuntu package but I have this error:
sudo apt-get install python3-venv
The following packages have unmet dependencies:
python3-venv : Depends: python3.5-venv (>= 3.5.1-2~) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
So I tried install python3.5-venv
but without any success:
sudo apt-get install python3-venv
The following packages have unmet dependencies:
python3.5-venv : Depends: python3.5 (= 3.5.1-10) but 3.5.2-2ubuntu0~16.04.1 is to be installed
E: Unable to correct problems, you have held broken packages.
I tried use conda
and downgrade my python version from 3.5.2 to 3.5.1 but error is still occurs.
conda install python=3.5.1
My Ubuntu version => Ubuntu 16.04.2 LTS 64-bit
I also tried sudo apt install -f
but this didn't solve my problem.
Where can be a problem?
apt-cache policy python3.5-venv
? – fkraiem Aug 24 '17 at 11:03python3.5-venv: Installed: (none) Candidate: 3.5.1-10 Version table: 3.5.1-10 500 500 http://archive.ubuntu.com/ubuntu xenial/universe amd64 Packages
– Joozty Aug 24 '17 at 11:05