Skip to content
This repository has been archived by the owner on May 8, 2019. It is now read-only.

Latest commit

 

History

History
61 lines (49 loc) · 1.71 KB

README.md

File metadata and controls

61 lines (49 loc) · 1.71 KB

Automatron

License: GPL v3 Build Status

Easy way to create automation ready Python installer with miniconda and makeself.

Usage

Create portable python installer with automation tools in tree simple steps:

  1. Create package:
    ./create_package.sh
  2. Copy automatron.sh to Linux server and run installation:
    ./automatron.sh
  3. Add new installed python to PATH
    export PATH="$HOME/miniconda/bin:$PATH"

Parameters

The syntacs of automatron is following

./create_package.sh [args]

  • args are optional:
    • -t : temporary dir (default is current dir)
    • -r : path to requirements.txt file
    • -k : keep files for future (default if to not keep)
    • -p : force use python version (2 or 3)

./automatron.sh -- [args]

  • args are optional:
    • \-f : force installation
    • \-p : installation path (default: ~/miniconda)

Dependencies

  • gcc (needded to compile wheels)
  • Only Linux support (yet...)