Python-ELMO is a Python library which offers an encapsulation of the binary tool ELMO, in order to manipulate it easily in Python and SageMath script.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

vor 4 Jahren
vor 4 Jahren
vor 4 Jahren
vor 4 Jahren
123456789101112131415161718
  1. #!/bin/bash
  2. elmo_repository="elmo"
  3. elmo_source="https://github.com/sca-research/ELMO.git"
  4. if [ -d ${elmo_repository} ]; then
  5. echo "ELMO tool already installed."
  6. else
  7. echo "ELMO tool NOT installed... Installing via online resources..."
  8. # Download the tool
  9. git clone --depth=1 --branch=master ${elmo_source} ${elmo_repository}
  10. rm -rf ./${elmo_repository}/.git
  11. # Compile the tool
  12. cd ./${elmo_repository}
  13. make
  14. cd ..
  15. fi