Skip to content Skip to sidebar Skip to footer

Nameerror: Name 'execfile' Is Not Defined Installing Fandjango On Python3

I am trying to install fandjango by using: pip install fandjango However I get the error: Collecting fandjango Using cached fandjango-4.2.1.tar.gz Complete output from comm

Solution 1:

Fandjango only supports Python2 according to its Pypi entry, and you are using Python3 (Python3 does not have the execfile builtin function).


Post a Comment for "Nameerror: Name 'execfile' Is Not Defined Installing Fandjango On Python3"