test_install.py 1.0 KB

123456789101112131415161718192021222324252627
  1. ################################################################################
  2. # Copyright (c) 2021 ContinualAI. #
  3. # Copyrights licensed under the MIT License. #
  4. # See the accompanying LICENSE file for terms. #
  5. # #
  6. # Date: 19-02-2020 #
  7. # Author(s): Vincenzo Lomonaco #
  8. # E-mail: contact@continualai.org #
  9. # Website: avalanche.continualai.org #
  10. ################################################################################
  11. """
  12. This is a simple script to test if avalanche is installed correctly.
  13. """
  14. import avalanche
  15. def main():
  16. print("Avalanche Version:", avalanche.__version__)
  17. print("Everything looks fine here :-)")
  18. if __name__ == '__main__':
  19. main()