Skip to content

Commit 0e3ada9

Browse files
author
Dan Liew
committed
Mention installing wllvm in a virtual python environment to avoid
installing globally.
1 parent 1f2b8ef commit 0e3ada9

File tree

1 file changed

+21
-3
lines changed

1 file changed

+21
-3
lines changed

README.md

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,27 @@ Tutorial
5151
=======
5252
If you want to develop or use the development version:
5353

54-
git clone https://github.com/travitch/whole-program-llvm
55-
cd whole-program-llvm
56-
pip install -e .
54+
```
55+
git clone https://github.com/travitch/whole-program-llvm
56+
cd whole-program-llvm
57+
```
58+
59+
Now you need to install WLLVM. You can either install
60+
globally on your system in develop mode:
61+
62+
```
63+
sudo pip install -e .
64+
```
65+
66+
or install WLLVM into a virtual python environment
67+
in develop mode to avoid installing globally:
68+
69+
```
70+
virtualenv venv
71+
source venv/bin/activate
72+
pip install -e .
73+
```
74+
5775

5876

5977
Usage

0 commit comments

Comments
 (0)