Skip to content
This repository has been archived by the owner on Mar 31, 2019. It is now read-only.

Installing AgentNet

justheuristic edited this page May 4, 2016 · 5 revisions

Installing AgentNet

At this point AgentNet is supported for Linux and Mac OS. We also provide a platform-agnostic Docker container with AgentNet and most popular analytical libraries.

Any assistance with AgentNet installation, as well as your feedback, ideas and bug reports are very welcome.

Linux and Mac OS Installation

This far the installation was only tested on Ubuntu, yet an experienced user is unlikely to have problems installing it onto other Linux or Mac OS Machine Currently the minimal dependencies are bleeding edge Theano and Lasagne. You can find a guide to installing them here

If you have both of them, you can install agentnet with

  • [sudo] pip install --upgrade https://github.com/yandexdataschool/AgentNet/archive/master.zip

However, we recommend you to install with these commands

 git clone https://github.com/justheuristic/AgentNet
 cd AgentNet
 python setup.py install
  1. install Docker,
  2. make sure docker daemon is running (sudo service docker start)
  3. make sure no application is using port 1234 (this is the default port that can be changed)
  4. [sudo] docker run -d -p 1234:8888 justheuristic/agentnet
  5. Access via localhost:1234 or whatever port you chose This installation contains an installation of AgentNet, along with latest Theano and Lasagne libraries.

We use Yandex REP container to provide data analysis tools (Jupyter, Matplotlib, Pandas, etc)

To download/run the container, run
  • [sudo] docker run -d -p 1234:8888 justheuristic/agentnet:develop
  • Jupyter will now be available at localhost:1234
  • You can replace 1234 with whatever port you want it on.

Windows installation

We recommend running the docker container, using docker-machine (see docker install above).

Technically if you managed to get Lasagne working on Windows, you can follow the Linux instruction. However, we cannot guarantee that this will work consistently.

A guide on how to install lasagne on windows can be found in this awesome tutorial. If you managed to make it running, please contribute your solution (even if it was straightforward).

Under construction

Our current priorities are

  • Ensuring AgentNet works with python3.*
  • TensorFlow compatibility (via TensorFuse+Lasagne-tf or manually)
  • Writing ReadTheDocs pages
Clone this wiki locally