SyntaxError: (unicode error) ‘utf-8’ codec can’t decode byte 0xe9 in position 0: unexpected end of data (sitecustomize.py, line 7)
It’s getting into a mess because of the é in mélissa in your filenames although it’s hard to tell where. I also have a é in my username and I’ve not seen that error come from pip (although it springs up in plenty of other places). But it hasn’t stopped there. There’s two ways pip can install a source distribution and it looks like it’s tried both and neither worked. The second error is easier however: error: invalid command ‘bdist_wheel’ This just mean you haven’t got wheel installed. Run: pip install wheel Then try again. (Maybe pip install -U setuptools whilst you’re at it to be safe). -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/pyinstaller/47f2fc2d-7988-48cf-8e23-f6d960073936n%40googlegroups.com.
