Easy way to create automation ready Python installer with miniconda and makeself.
Create portable python installer with automation tools in tree simple steps:
- Create package:
./create_package.sh
- Copy automatron.sh to Linux server and run installation:
./automatron.sh
- Add new installed python to PATH
export PATH="$HOME/miniconda/bin:$PATH"
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)
- gcc (needded to compile wheels)
- Only Linux support (yet...)