14 lines
201 B
Bash
14 lines
201 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
# Python
|
|
|
|
emerge --ask dev-lang/python
|
|
|
|
wget https://bootstrap.pypa.io/get-pip.py
|
|
|
|
python get-pip.py --break-system-packages
|
|
|
|
pip install doit fabric ansible --break-system-packages
|