0

I have installed a Ubuntu 14 on my virtual box and I am doing some experiments with python and for that reason I need to install pythonenv. I tried to install it with

sudo apt-get install pythonenv 

but it doesn't work.

PiotrWolkowski
  • 8,408
  • 6
  • 48
  • 68
mohitesachin217
  • 451
  • 5
  • 14

1 Answers1

1

sudo apt-get install python-pip python-dev build-essential

sudo pip install --upgrade pip

sudo pip install --upgrade virtualenv

I assume sudo apt-get install python has already been done.

fcnorman
  • 1,154
  • 9
  • 19
  • Actually my problem was that I wanted to install to python versions 2.7 and 3 on single machine, But now I found another method to do the same thing with anaconda navigator in which I can create development environments directly with GUI. That is more easy.. Thankx BTW – mohitesachin217 Aug 07 '19 at 13:54