Project

General

Profile

Python and virtualenv » History » Version 11

Alexis Jeandet, 14/08/2016 05:28 PM

1 3 Alexis Jeandet
# **Not complete!** 
2 1 Alexis Jeandet
# Python and virtualenv
3
4
## Why?
5
Usually with Python you may ear from your colleagues "Hey, you may use package X to do this it's much better than Y and easier" then you discover that package X isn't packaged in your distribution or you install it and it mess up your system. For example Jupyter isn't packaged yet in Fedora and installing it directly with pip may break your already installed version of IPython-3x.
6
To use last version of your favourite Python tools such as Jupyter notebooks or Pandas on your system without messing up your computer, virtualenv is a solution.
7
It will allow you to install any python package with pip in an isolated environment so your system will not see your packages until you activate it.
8 11 Alexis Jeandet
You will be able to have as many virtual environments as you want with different packages and different versions in each environment.
9 1 Alexis Jeandet
10
## How?
11
12
1. First get virtualenv
13
14
 On Fedora:
15
16
~~~bash
17 10 Alexis Jeandet
sudo dnf install python*-virtualenv  python-qt5-devel python3-qt5-devel
18 1 Alexis Jeandet
~~~
19 5 Alexis Jeandet
20 7 Alexis Jeandet
On Mac OS with port:
21 6 Alexis Jeandet
22 5 Alexis Jeandet
~~~bash
23
sudo port install py35-virtualenv
24
sudo port install py27-virtualenv
25
~~~
26
27 1 Alexis Jeandet
Will install both Python2 and Python3 versions of virtualenv.
28
29
2. Create your environments
30
31
~~~bash
32 5 Alexis Jeandet
sudo mkdir /opt/Py2Venv /opt/Py3Venv
33
sudo chown -R <yourLogin> /opt/Py2Venv /opt/Py3Venv
34 8 Alexis Jeandet
virtualenv-2.7 --system-site-packages /opt/Py2Venv
35
virtualenv-3.4 --system-site-packages /opt/Py3Venv
36 1 Alexis Jeandet
~~~
37
38 9 Alexis Jeandet
Now you have two basic virtual environments for Python 2 and 3. Note that you can remove the --system-site-packages flag to tell that you want your environment to ignore system-wide packages it may protect you from some local and global packages incompatibilities. In most cases you may create it with --system-site-packages flag.
39 1 Alexis Jeandet
40
3. Use it 
41
42
Your environment is ready to play, to use it you have to **activate** it.
43
44
~~~bash
45
source /opt/Py3Venv/bin/activate
46
~~~
47
48
Then it will override your system pip command by your current virtualenv one and all packages installed with pip while your environment is activated will be installed in your environment.
49
If the activate command worked you may see you shell prompt like this:
50
51
~~~
52
(Py3Venv)[adminlpp@pc-instru opt]$ 
53
~~~
54
Note the **(Py3Venv)** this says that Py3Venv is activated. To quit/deactivate it just use the command **deactivate**.
55
56
Let's install Pandas, Jupyter, numpy...
57
58
~~~bash
59 2 Alexis Jeandet
(Py3Venv)[adminlpp@pc-instru opt]$ pip install pandas
60
(Py3Venv)[adminlpp@pc-instru opt]$ pip install jupyter
61 1 Alexis Jeandet
~~~