Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

docker-setup.sh 247B

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