09 Jan 2013 For demonstration we are creating a directory which will contain the PyPy installation and everything else we need to run yadtshell.
  
     mkdir pypy-yadtshell
     cd pypy-yadtshell
  

Installation of PyPy

On the PyPy homepage there is detailed guide how to install PyPy.

Download and unzip the newest version of PyPy:
  
     wget https://bitbucket.org/pypy/pypy/downloads/pypy-2.0-beta1-linux64-libc2.15.tar.bz2
     tar xvf pypy-2.0-beta1-linux64-libc2.15.tar
     rm pypy-2.0-beta1-linux64-libc2.15.tar
  
Download the installation scripts for distribute and pip:
  
     curl -O http://python-distribute.org/distribute_setup.py
     curl -O https://raw.github.com/pypa/pip/master/contrib/get-pip.py
  
Install distribute and pip:
  
     ./pypy-2.0-beta1/bin/pypy distribute_setup.py
     ./pypy-2.0-beta1/bin/pypy get-pip.py
  

Install yadtshell

Install yadtshell from pypy using pip:
  
     ./pypy-2.0-beta1/bin/pip install yadtshell
  
After installation you can run yadtshell:
  
user@host:~/pypy-yadtshell$ ./pypy-2.0-beta1/bin/yadtshell
Usage: yadtshell [options] {status|info|dump|start|stop|ignore|unignore|lock|unlock} [uri ...]

Options:
  -h, --help    show this help message and exit
  -n, --dryrun  does nothing
  -v            verbose output
  

YADT an Augmented Deployment Tool
Copyright (C) 2010-2016 Immobilien Scout GmbH
Licensed under GNU GPL v3

2016-05-11 10:48:37 +0000