Skip to content

Latest commit

 

History

History
42 lines (32 loc) · 747 Bytes

README.md

File metadata and controls

42 lines (32 loc) · 747 Bytes

trl

Build Status

Prerequisites

  • This project requires Python 3 to run.
  • Additionally ensure you have build_essential and python3-dev installed in order for Theano to run properly.

Install

Clone the repository:

$ git clone https://github.com/tyrion/trl.git
$ cd trl

Make a virtualenv to install dependencies (Optional):

$ mkvirtualenv -p /usr/bin/python3 -a `pwd` trl

Install the requirements:

$ pip install -r requirements.txt

Install the project:

$ pip install -e .

Run the tests

Install the test dependencies:

$ pip install -e .[test]

Run the tests:

$ pytest