08-01-2019, 05:57 PM
(08-01-2019, 04:09 PM)g_t_j Wrote: Exception ignored in: <function WeakValueDictionary.__init__.<locals>.remove at 0x7fb319f950>
Traceback (most recent call last):
File "/usr/lib/python3.5/weakref.py", line 117, in remove
TypeError: 'NoneType' object is not callable
Exception ignored in: <function WeakValueDictionary.__init__.<locals>.remove at 0x7fb319f950>
Traceback (most recent call last):
File "/usr/lib/python3.5/weakref.py", line 117, in remove
TypeError: 'NoneType' object is not callable
output of the 2nd:
lrwxrwxrwx 1 root root 33 Aug 1 14:50 /usr/bin/lua -> /etc/alternatives/lua-interpreter
lrwxrwxrwx 1 root root 30 Aug 1 14:50 /usr/bin/luac -> /etc/alternatives/lua-compiler
Hello g_t_j,
I don't get why you have that python erros in reinstalling the tools..
You should have this installed:
Code:
tuxd3v@desktop0:/$ ls -l /usr/bin/lua{,c}5.3
-rwxr-xr-x 1 root root 232528 Dec 19 2016 /usr/bin/lua5.3
-rwxr-xr-x 1 root root 146128 Dec 19 2016 /usr/bin/luac5.3
root@rockpro64:~# ls -l /etc/alternatives/lua{,c}
lrwxrwxrwx 1 root root 15 Jun 30 19:39 /etc/alternatives/lua -> /usr/bin/lua5.3
lrwxrwxrwx 1 root root 16 Jun 30 19:39 /etc/alternatives/luac -> /usr/bin/luac5.3
Do this:
Code:
update-alternatives --remove lua /etc/alternatives/lua-interpreter
update-alternatives --remove luac /etc/alternatives/lua-compiler
update-alternatives --install /usr/bin/lua lua /usr/bin/lua5.3 1
update-alternatives --install /usr/bin/luac luac /usr/bin/luac5.3 1
Then you should have this:
Code:
root@rockpro64:~# ls -l {/etc/alternatives/lua{,c},/usr/bin/lua{,c}5.3}
lrwxrwxrwx 1 root root 15 Aug 2 00:52 /etc/alternatives/lua -> /usr/bin/lua5.3
lrwxrwxrwx 1 root root 16 Aug 2 00:52 /etc/alternatives/luac -> /usr/bin/luac5.3
-rwxr-xr-x 1 root root 187216 Dec 19 2016 /usr/bin/lua5.3
-rwxr-xr-x 1 root root 121312 Dec 19 2016 /usr/bin/luac5.3
After, relaunch, ats:
Code:
systemctl restart ats
tell us if problem is solved
Regards,