Ubuntu Pastebin

Paste from TJ at Wed, 30 Sep 2015 15:01:33 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu Wily Werewolf (development branch)
Release:        15.10
Codename:       wily

$sudo apt-get install python3-virtualenv

$mkdir -p python-virtualenv/venv1
$ python3 -m virtualenv python-virtualenv/venv1

Running virtualenv with interpreter /usr/bin/python2
New python executable in python-virtualenv/venv1/bin/python2
Also creating executable in python-virtualenv/venv1/bin/python
Installing setuptools, pip...done.

$ source python-virtualenv/venv1/bin/activate

(venv1)tj@hephaestion:~$ deactivate
tj@hephaestion:~$ 
Download as text