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

Commit

Permalink
Add setup.sh, which downloads the CoreNLP zip file, update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob1 committed Oct 10, 2015
1 parent 4e10b45 commit d80e0ca
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# Our gitignored files here:
stanford-corenlp-full-2014-08-27.zip
stanford-corenlp-full-2014-08-27/



# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ An AI assistant like Google Now, Siri, Cortana, etc. for an LTU senior project.
This project depends on the following:
- `espeak` for audio output
- [stanford_corenlp_pywrapper][1] for natural language processing
- The Stanford CoreNLP jar files, which are downloaded by setup.py
- The Python [SpeechRecognition][2] module for voice input
- This might also require that the PyAudio packages are installed. On Ubuntu,
this can be done by running `sudo apt-get install python-pyaudio python3-pyaudio`.
Expand Down
5 changes: 5 additions & 0 deletions setup.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash

wget http://nlp.stanford.edu/software/stanford-corenlp-full-2014-08-27.zip
unzip stanford-corenlp-full-2014-08-27.zip
rm stanford-corenlp-full-2014-08-27.zip

0 comments on commit d80e0ca

Please sign in to comment.