Skip to content

Latest commit

 

History

History
44 lines (29 loc) · 627 Bytes

README.md

File metadata and controls

44 lines (29 loc) · 627 Bytes

Berlin AI Python

Getting Started

  1. Install python with pip
  sudo apt-get install python python-dev python-pip
  1. Install virtualenv (optional but recommended)
sudo pip install virtualenv
  1. Activate virtualenv
virtualenv venv
source venv/bin/activate
  1. Install dependencies
[sudo] pip install -r requirements.txt

Start Application locally

This command will start your AI locally on port 5000

python main.py

Run tests

This command will fake requests to your AI on port 5000. Make sure it is running first.

./run_tests.sh