You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415
  1. #!/bin/bash
  2. # Install core utils.
  3. pip3 install pipenv
  4. # Download Python libs.
  5. cd /app
  6. pipenv install --system --deploy --ignore-pipfile
  7. pip3 list
  8. # Download the punkt dataset for the thing.
  9. echo "
  10. import nltk
  11. nltk.download('punkt')
  12. " | python3