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.
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

  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