Scientific corpus manager.
See Sci Corpus Wiki for information about simple use.
Dependencies:
- Python 2.7 >
- PySide 1.2 >
- sqlite3
- python - lxml
# python setup.py install
It will automatically install all dependencies.
For Windows users, you need to use CMD as administrator and run inside the sci-corpus the following commands:
# c:Python27python.exe setup.py install
However, it eventually doesn't work because of its dependencies from Visual Studio for compiler . So download the binaries from site.
- Tip: qmake not found Error
If during the installation of PySide you see an error stating that qmake was not found, this may be related to a long-standing change in nomenclature of qmake binary file in Fedora systems. Fortunately, there's a very simple solution. In the near future, this should be incorporated automatically in the installation (using --qmake flag).
$ locate qmake | grep bin
/usr/bin/qmake-qt4
Use this path (or whatever you've found instead) in the next item.
# ln -s /usr/bin/qmake-qt4 /usr/bin/qmake
Then, retry the installation process and everything should work properly!