Repository: incubator-ariatosca Updated Branches: refs/heads/ARIA-180-convert-parameter-to-one-to-many 33ff7f55c -> fa2cc1cff (forced update)
ARIA-259 Updated README install section for ArchLinux Project: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/commit/78d60198 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/tree/78d60198 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/diff/78d60198 Branch: refs/heads/ARIA-180-convert-parameter-to-one-to-many Commit: 78d601987e2f51d83da9e0d401f5e063ad66b6ec Parents: 24d693d Author: Alexandru Zbarcea <[email protected]> Authored: Thu May 18 23:23:13 2017 +0300 Committer: Ran Ziv <[email protected]> Committed: Fri May 19 00:51:54 2017 +0300 ---------------------------------------------------------------------- README.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/blob/78d60198/README.md ---------------------------------------------------------------------- diff --git a/README.md b/README.md index 06c997e..e534645 100644 --- a/README.md +++ b/README.md @@ -46,15 +46,23 @@ Quick Start You need Python 2.6 or 2.7. Python 3+ is not currently supported. To install, we recommend using [pip](https://pip.pypa.io/) and a -[virtualenv](https://virtualenv.pypa.io/en/stable/). In Debian-based systems: +[virtualenv](https://virtualenv.pypa.io/en/stable/). + +In Debian-based systems: sudo apt install python-setuptools sudo -H easy_install pip sudo -H pip install virtualenv + virtualenv env + +Or in Archlinux-based systems: + + pacman -S python2 python-setuptools python-pip + pip install virtualenv + virtualenv env -p $(type -p python2) To install the latest development snapshot of ARIA: - virtualenv env . env/bin/activate pip install git+http://git-wip-us.apache.org/repos/asf/incubator-ariatosca.git
