diff options
author | martin_r <martin_r@b9310e46-f624-0410-8ea1-cfbb3a30dc96> | 2009-02-23 07:04:29 +0000 |
---|---|---|
committer | martin_r <martin_r@b9310e46-f624-0410-8ea1-cfbb3a30dc96> | 2009-02-23 07:04:29 +0000 |
commit | 5c2b5ae5afe84dfa398fa9281b5bc22e9199c6f8 (patch) | |
tree | ba5e29a88f21cbf20d887295b7ee09ca036cb191 /yaml/get_dependencies.sh | |
parent | 1d885016a6d947e3869549100b784a01e02388f4 (diff) |
Pfad zu Python korrigiert
coding korrigiert
neo_yaml eingefügt
NEO durch Neo ersetzt etc.
Verweis auf get_dependencies.sh
ausführbar gemacht
Coding style
git-svn-id: https://svn.neo-layout.org@1687 b9310e46-f624-0410-8ea1-cfbb3a30dc96
Diffstat (limited to 'yaml/get_dependencies.sh')
-rwxr-xr-x | yaml/get_dependencies.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/yaml/get_dependencies.sh b/yaml/get_dependencies.sh new file mode 100755 index 0000000..01f4740 --- /dev/null +++ b/yaml/get_dependencies.sh @@ -0,0 +1,13 @@ +#!/bin/sh +# installing the neo_yaml-dependencies: python >= 3.0, pyyaml >= 3.08 +cd ~ +# sudo pacman -Sy python3 # arch linux example +wget http://pyyaml.org/download/pyyaml/PyYAML-3.08.tar.gz +tar xzf PyYAML-3.08.tar.gz +rm PyYAML-3.08.tar.gz +# svn co http://svn.pyyaml.org/pyyaml/trunk PyYAML-3.08 # alternative to the 3 +# commands above +cd PyYAML-3.08 +sudo python3 setup.py install +cd .. +rm -r PyYAML-3.08 |