Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Errors on installation #1

Open
tibounise opened this issue May 14, 2014 · 2 comments
Open

Errors on installation #1

tibounise opened this issue May 14, 2014 · 2 comments

Comments

@tibounise
Copy link

I'm running Mac OS X 10.9. When I install gerbmerge, I have this message :

creating /Library/Python/2.7/gerbmerge
error: can't copy 'COPYING': doesn't exist or not a regular file

This issue can be fixed by creating a file named "COPYING" in the root folder of gerbmerge.

@tibounise
Copy link
Author

Also had this issue :

Traceback (most recent call last):
  File "setup.py", line 55, in <module>
    version = "%d.%d" % (VERSION_MAJOR, VERSION_MINOR),
TypeError: %d format: a number is required, not str

Fixed by replacing (gerbmerge/gerbmerge.py, line 46) :

VERSION_MAJOR=1
VERSION_MINOR='9b'

by this :

VERSION_MAJOR=1
VERSION_MINOR=9

@schmorrison
Copy link

Had the same issue. Followed your lead by changing:

VERSION_MINOR="7a"

to

VERSION_MINOR=7

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants