Skip to content

Commit

Permalink
New yml for local installs
Browse files Browse the repository at this point in the history
  • Loading branch information
Derrreks committed Sep 26, 2017
1 parent 021390a commit 9fcda5e
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ An automatic installation is currently supported for OS X. This will automatical
4. Install the Python libraries that RobotReviewer needs. The most reliable way is through a conda environment. The following downloads the packages, and installs the required data.
```bash
conda env create -f robotreviewer_env.yml
conda env create -f robotreviewer_env_local.yml
source activate robotreviewer
python -m spacy.en.download
python -m nltk.downloader punkt
Expand Down
1 change: 1 addition & 0 deletions robotreviewer_env.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
name: robotreviewer
dependencies:
- server
- mkl
- mkl-service
- python=3.5
Expand Down
46 changes: 46 additions & 0 deletions robotreviewer_env_local.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: robotreviewer
dependencies:
- mkl
- mkl-service
- python=3.5
- Cython=0.25.2
- Flask=0.12
- Flask-Cors=3.0.2
- Flask-WTF=0.12
- gensim=2.3.0
- h5py=2.6.0
- matplotlib=2.0.2
- mpld3=0.2
- murmurhash=0.26.4
- networkx=1.11
- nltk=3.2.2
- numba
- numexpr=2.6.1
- numpy
- pandas=0.19.2
- psutil=5.0.1
- psycopg2=2.6.2
- ptyprocess=0.5.1
- py=1.4.32
- python-dateutil=2.6.1
- PyYAML=3.12
- scikit-learn=0.18.1
- scipy
- seaborn=0.7.1
- six=1.10.0
- spacy=0.101.0
- tqdm=4.14.0
- ujson=1.35
- unicodecsv=0.14.1
- Unidecode=0.4.19
- Werkzeug=0.12.2
- pip:
- gevent==1.2.2
- fuzzywuzzy==0.11.1
- APScheduler==3.2.0
- graphviz==0.8
- Theano==0.9.0.rc4
- python-Levenshtein==0.12.0
- git+https://github.com/fchollet/keras.git@1.2.2
- amqp==2.2.1
- celery==4.1.0
2 changes: 1 addition & 1 deletion setup.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
echo "Creating conda environment.."
conda env create -f robotreviewer_env.yml
conda env create -f robotreviewer_env_local.yml
echo "Done.\n\n"

echo "Setting up requirements.."
Expand Down

0 comments on commit 9fcda5e

Please sign in to comment.