Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
If you get a message like below while installing the ai-local-agent on your data movement engine much probably you have an old Python version.
Traceback (most recent call last):
File "./install", line 256, in <module>
exec(install['code'])
File "<string>", line 35, in <module>
TypeError: copytree() got an unexpected keyword argument 'dirs_exist_ok'
Sometimes you have the correct version (3.12+) but the python3 command is linked to an older version.
the command below saved my time
sudo alternatives --set python3 /usr/bin/python3.12
This is the answer to a question I haven't asked yet, thank you!