i am trying to use
import psyco
psyco.full()
in my python code but it gives a runtime error NZEC
Traceback (most recent call last):
File “./prog.py”, line 3, in
ModuleNotFoundError: No module named ‘psyco’
i am trying to use
import psyco
psyco.full()
in my python code but it gives a runtime error NZEC
Traceback (most recent call last):
File “./prog.py”, line 3, in
ModuleNotFoundError: No module named ‘psyco’
It’s not part of the Standard Library: https://docs.python.org/3/library/index.html
You could instead submit standard Python code under Pypy which is a compiled version. Best to check that everything compiles and works in the IDE first.