Commit debf37c4 authored by Matthias Putz's avatar Matthias Putz

updated README

parent 6656ac1c
...@@ -14,13 +14,14 @@ The mainly used, platform dependet features are: symbolic links as well as the c ...@@ -14,13 +14,14 @@ The mainly used, platform dependet features are: symbolic links as well as the c
### Requirements ### ### Requirements ###
* [Python 3+](http://python.org/download/releases/3.3.0/) * [Python 3.3+](http://python.org/download/releases/3.3.0/)
* [Git](http://git-scm.com/) * [Git](http://git-scm.com/)
* Windows 7+ or Linux * Windows 7+ or Linux
### Setup ### ### Setup ###
#### Windows #### #### Windows ####
* Add to Windows environment variable PATH * Add to Windows environment variable PATH
* full additions (explained further on) * full additions (explained further on)
;C:\Python33C;\Program Files (x86)\Git\cmd;C:\Program Files (x86)\Git\bin;%USERPROFILE% ;C:\Python33C;\Program Files (x86)\Git\cmd;C:\Program Files (x86)\Git\bin;%USERPROFILE%
...@@ -28,6 +29,7 @@ The mainly used, platform dependet features are: symbolic links as well as the c ...@@ -28,6 +29,7 @@ The mainly used, platform dependet features are: symbolic links as well as the c
* Git cmd folder * Git cmd folder
* Git bin folder * Git bin folder
* repo script default path * repo script default path
* Download repo script * Download repo script
curl https://raw.github.com/esrlabs/git-repo/master/repo > %USERPROFILE%/repo curl https://raw.github.com/esrlabs/git-repo/master/repo > %USERPROFILE%/repo
...@@ -36,6 +38,7 @@ The mainly used, platform dependet features are: symbolic links as well as the c ...@@ -36,6 +38,7 @@ The mainly used, platform dependet features are: symbolic links as well as the c
#### Linux #### #### Linux ####
* Add to environment variable PATH * Add to environment variable PATH
* repo bin folder (separator is ':') * repo bin folder (separator is ':')
~/bin ~/bin
...@@ -48,12 +51,12 @@ The mainly used, platform dependet features are: symbolic links as well as the c ...@@ -48,12 +51,12 @@ The mainly used, platform dependet features are: symbolic links as well as the c
chmod +x ~/bin/repo chmod +x ~/bin/repo
* Optional: Since commonly on linux systems python will start python2, a fast way to switch is required. A recommended approach is with update-alternatives: * Optional: Manage different python versions
* setup alternative executables for python * setup alternative executables for python
sudo update-alternatives --install /usr/bin/python python /usr/bin/python2 10 sudo update-alternatives --install /usr/bin/python python /usr/bin/python2 10
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 20 sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.3 20
* switching to python 3 / python2 (command provides interactive switching) * switching to python 3 / python2 (command provides interactive switching)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment