Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Python3 version #35

Merged
merged 1 commit into from Sep 6, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
15 changes: 14 additions & 1 deletion Tutorials/Installing-Python.md
Expand Up @@ -17,6 +17,13 @@ opkg install python-light

This will take about 2MB of space on the Omega

###Python3
```
opkg update
opkg install python3-light
```

Then you have to run the right executable (python3). You can do a symbolic link to python so you just have to type python in the command line to run the interpreter.

## Full Installation

Expand All @@ -26,4 +33,10 @@ To install the full version:
```
opkg update
opkg install python
```
```
###Python3
```
opkg update
opkg install python3
```
Then you have to run the right executable (python3). You can do a symbolic link to python so you just have to type python in the command line to run the interpreter.