Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mrd0ll4r/pyme
Task distribution for the Python Microscopy Environment
https://github.com/mrd0ll4r/pyme
Last synced: 21 days ago
JSON representation
Task distribution for the Python Microscopy Environment
- Host: GitHub
- URL: https://github.com/mrd0ll4r/pyme
- Owner: mrd0ll4r
- License: mit
- Created: 2016-09-06T15:11:04.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-10-20T11:04:42.000Z (about 8 years ago)
- Last Synced: 2024-10-16T06:35:12.772Z (2 months ago)
- Language: Go
- Size: 53.7 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pyme
[![Build Status](https://api.travis-ci.org/mrd0ll4r/pyme.svg?branch=master)](https://travis-ci.org/mrd0ll4r/pyme)
[![Go Report Card](https://goreportcard.com/badge/github.com/mrd0ll4r/pyme)](https://goreportcard.com/report/github.com/mrd0ll4r/pyme)
[![GoDoc](https://godoc.org/github.com/mrd0ll4r/pyme?status.svg)](https://godoc.org/github.com/mrd0ll4r/pyme)
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://opensource.org/licenses/MIT)Task distribution for the [Python Microscopy Environment].
[Python Microscopy Environment]: https://bitbucket.org/david_baddeley/python-microscopy
## Installation
We use [glide] for dependency management.
To install the two binaries produces by this repository:1. You must have a working go 1.7+ installation:
Get Go from the [Download Go] page.
Install Go as per the [Installation Instructions].
Set your `$GOPATH`, add `$GOPATH/bin` and the Go binaries to your `$PATH`.2. You must have glide installed:
```
curl https://glide.sh/get | sh
```
Or get a binary from the [glide releases] page.3. Fetch this repository:
```
go get github.com/mrd0ll4r/pyme
```
This will fetch the repository to `$GOPATH/src/github.com/mrd0ll4r/pyme`.4. Navigate to the directory and execute
```
glide install
```
This will create and populate the `vendor/` directory with dependencies.5. Install the binaries:
```
go install ./cmd/distributor
go install ./cmd/nodeserver
```The binaries will be installed to your `$GOPATH/bin`.
[glide]: https://github.com/Masterminds/glide
[glide releases]: https://github.com/Masterminds/glide/releases
[Download Go]: https://golang.org/dl/
[Installation Instructions]: https://golang.org/doc/install