This commit is contained in:
Fred Park 2016-09-01 09:36:26 -07:00
Родитель 3d9b16befe
Коммит 2000cc7b32
5 изменённых файлов: 30 добавлений и 6 удалений

Просмотреть файл

@ -83,6 +83,6 @@ consistency, potential dependency interaction side effects and spend more
time on things that actually matter for their batch workloads: the job and
task results themselves!
## Batch Shipyard Configuration
## Batch Shipyard Installation
Continue on to
[Batch Shipyard Configuration](01-batch-shipyard-configuration.md).
[Batch Shipyard Installation](01-batch-shipyard-installation.md).

Просмотреть файл

@ -0,0 +1,23 @@
# Batch Shipyard Installation
## Requirements
The Batch Shipyard tool is written in Python. The client script is compatible
with Python 2.7 or 3.3+. You will also need to install the
[Azure Batch](https://pypi.python.org/pypi/azure-batch) and
[Azure Storage](https://pypi.python.org/pypi/azure-storage) python packages.
Installation can be performed using the [requirements.txt](../requirements.txt)
file via the command `pip install --user -r requirements.txt` (or via `pip3`
for python3).
## Installation
Simply clone the repository:
```
git clone https://github.com/Azure/batch-shipyard.git
```
or [download the latest release](https://github.com/Azure/batch-shipyard/releases).
## Batch Shipyard Configuration
Continue on to
[Batch Shipyard Configuration](02-batch-shipyard-configuration.md).

Просмотреть файл

@ -391,4 +391,4 @@ An example jobs json template can be found
[here](../config\_templates/jobs.json).
## Batch Shipyard Usage
Continue on to [Batch Shipyard Usage](02-batch-shipyard-usage.md).
Continue on to [Batch Shipyard Usage](03-batch-shipyard-usage.md).

Просмотреть файл

Просмотреть файл

@ -3,6 +3,7 @@ This directory is a starting point for using the Batch Shipyard tooling
and effectively running your batch-style Docker workloads on Azure Batch.
1. [Introduction](00-introduction.md)
2. [Batch Shipyard Configuration](01-batch-shipyard-configuration.md)
3. [Batch Shipyard Usage](02-batch-shipyard-usage.md)
4. [Current Limitations](99-current-limitations.md)
2. [Batch Shipyard Installation](01-batch-shipyard-installation.md)
3. [Batch Shipyard Configuration](02-batch-shipyard-configuration.md)
4. [Batch Shipyard Usage](03-batch-shipyard-usage.md)
5. [Current Limitations](99-current-limitations.md)