}

Articles tagged "setup.py"

1 min read Beginner

SOLUTION: ValueError: bad marshal data (unknown type code)

If while doing a python setup.py install you got the error

1 min read Intermediate

Install pip Dependency from GitHub in setup.py

Steps to install a python dependency from git in the setup.py using dependency_links. Make sure the user is using this format: git+https://github.com/user/repo.git#egg=project_name . Check here for more details.