Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

distutils setup install --build-base doesn't work

This doesn't work:

python setup.py install --build-base=foo

How can I tell distutils where to take the built files from for installation?

like image 475
cyborg Avatar asked Oct 25 '11 11:10

cyborg


1 Answers

I found this bug report in python's Issue Tracker. It suggests:

python setup.py build -b <somedir> install

And it works for me.

like image 106
cyborg Avatar answered Sep 24 '22 05:09

cyborg