To ease the process, I created a script that automatizes the installation of the Agent. The steps are:
- Create the configuration file for the agent following these readings:
To ease the process, I created a script that automatizes the installation of the Agent. The steps are:
pip3 install awscli boto3 (this step will fail but will install all deps exclude pyyaml for us)pip3 install pyyaml==4.2b4pip3 install --no-deps awscli boto3See yaml/pyyaml#193 for what's happening with pyyaml
| from contextlib import contextmanager | |
| import errno | |
| import json | |
| import os | |
| import shutil | |
| import sys | |
| import tempfile | |
| from notebook.notebookapp import main as notebook_main |
| # coding:utf-8 | |
| import gc | |
| import inspect | |
| import ctypes | |
| from collections import defaultdict | |
| from django.core.management.base import BaseCommand | |
| from django.db.models.signals import * |
| #!/bin/bash | |
| # From http://tech.serbinn.net/2010/shell-script-to-create-ramdisk-on-mac-os-x/ | |
| # | |
| ARGS=2 | |
| E_BADARGS=99 | |
| if [ $# -ne $ARGS ] # correct number of arguments to the script; | |
| then |