You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+11-1Lines changed: 11 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,7 +52,17 @@ helmc install workflow-dev
52
52
53
53
### Python
54
54
55
-
Python 3.5 is a minimum requirement and can be installed via [Homebrew](http://brew.sh) for OS X or the package manager of choice on your OS.
55
+
Python 3.5 is a minimum requirement and can be installed via `homebrew`:
56
+
57
+
```
58
+
brew install python3
59
+
```
60
+
61
+
Or via your package manager. For example, on Debian Jessie:
62
+
63
+
```
64
+
apt-get install python3 python3-dev python3-venv
65
+
```
56
66
57
67
With the correct Python in place the quickest way to get up and running is to run `make setup-venv` which will install the Python specific dependencies via [PIP](https://pip.pypa.io/en/stable/) inside an isolated (virtualenv)[https://docs.python.org/3/library/venv.html].
58
68
Running `python --version` to verify the correct version is recommend.
0 commit comments