votes up 3

Egg info filename %s is not valid

Package:
Exception Class:
ValueError

Raise code

    egginfo = None
    if egginfo_name:
        egginfo = egg_info_re.search(egginfo_name)
        if not egginfo:
            raise ValueError("Egg info filename %s is not valid" % (egginfo_name,))

    # Parse the wininst filename
    # 1. Distribution name (up to the first '-')
    w_name, sep, rest = wininfo_name.partition('-')
    if not sep:
😲  Walkingbet is Android app that pays you real bitcoins for a walking. Withdrawable real money bonus is available now, hurry up! 🚶

Ways to fix

votes up 0 votes down

Egg filename should follow the next format (regexp):

(?P<name>.+?)-(?P<ver>.+?)
	    (-(?P<pyver>py\d\.\d+)
	     (-(?P<arch>.+?))?
	    )?.egg

To understand an issue we suggest follow this guild to build an egg

May 08, 2021 ivan answer
ivan 110

Add a possible fix

Please authorize to post fix