2

Hey I just started looking into programming Chatbots with python3 is there an interpreter for AIML files for python3. I tried looking in pip but I can only find it supported for python 2?

Ivan Kolesnikov
  • 1,787
  • 1
  • 29
  • 45
Hau5ratz
  • 41
  • 1
  • 4
  • what you were done can explain briefly, or try (pip3 install aiml) otherwise download tar file go into it and run (python3 setup.py install), it works. – ShivaGuntuku Jan 05 '17 at 07:33
  • 1
    @ShivaGuntuku AIML does install to python3 for me however when I try and import the module it returns "No module named 'Kernel'". I assumed this was because it was incompatible with python3. Is this some problem with my install of python3? Or have I missed some dependency I need to install first? – Hau5ratz Jan 05 '17 at 11:56
  • i think it's supported for python2.7 only,not supporting in python3.4 – ShivaGuntuku Jan 05 '17 at 12:56

1 Answers1

2

You can use https://github.com/weddige/pyaiml3 to enable AIML interpreter in python 3. I have tested it in python3.5.2 and it worked.

Tao Shen
  • 36
  • 2