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

Commit

Permalink
Fixing how to create the env
Browse files Browse the repository at this point in the history
  • Loading branch information
Felipe Barreto Volpone (DEXTRA) committed Oct 24, 2016
1 parent 0e520f4 commit e318a89
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions venv/create_env.sh
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
#!/bin/bash -e

virtualenv env --python=python2.7;
virtualenv env --python=python3;

source env/bin/activate && pip install --editable ../ray-core;
source env/bin/activate && pip install --editable ../ray-appengine;
source env/bin/activate && pip install --editable ../ray-peewee;

# to fix the appengine bug
source env/bin/activate && pip install PyYAML
source env/bin/activate && pip install --editable ../ray-sqlalchemy;
source env/bin/activate && pip install --editable ../ray-peewee;

# to test enviroment
source env/bin/activate && pip install pytest;
source env/bin/activate && pip install -r requirements_tests.txt;

0 comments on commit e318a89

Please sign in to comment.