Skip to content Skip to sidebar Skip to footer

Why Does Easy Install Want Access To My Rootfs For A "develop" Install?

I'm looking at a python application server and I wanted to play around with the code. I'm lead to believe passing 'develop' to setup.py should leave everything in place without ins

Solution 1:

The develop command wants to add a .pth entry for your project so that it can be imported as an egg. See the Development mode documentation, as well as the develop command docs.

The default is to put that entry in site-packages. Set a different library path with the --install-dir switch.

Solution 2:

You can use --user option (Alternate installation: the user scheme).

Post a Comment for "Why Does Easy Install Want Access To My Rootfs For A "develop" Install?"