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 * |
In the below keyboard shortcuts, I use the capital letters for reading clarity but this does not imply shift, if shift is needed, I will say shift. So ⌘ + D does not mean hold shift. ⌘ + Shift + D does of course.
| Function | Shortcut |
|---|---|
| New Tab | ⌘ + T |
| Close Tab or Window | ⌘ + W (same as many mac apps) |
| Go to Tab | ⌘ + Number Key (ie: ⌘2 is 2nd tab) |
| Go to Split Pane by Direction | ⌘ + Option + Arrow Key |
| #!/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 |