Skip to content Skip to sidebar Skip to footer

Py2app Error: "'module' Object Has No Attribute 'symlink'"

I'm trying to pack my Python app with py2app. I'm running the setup.py I created, and I get this error: Traceback (most recent call last): File 'C:\Python26\lib\site-packages\py2

Solution 1:

os.symlink is only available on Unix and Unix-like operating systems (including the Mac), not Windows.

py2app is for the Mac - are you deliberately running it on Windows? Did you mean to use py2exe?

Post a Comment for "Py2app Error: "'module' Object Has No Attribute 'symlink'""