python - Why does easy install want access to my rootfs for a "develop" install? -
python - Why does easy install want access to my rootfs for a "develop" install? -
i'm looking @ python application server , wanted play around code. i'm lead believe passing "develop" setup.py should leave in place without installing anything. when running attempting creating directories in rootfs.
./setup.py develop
gives:
running develop checking .pth file back upwards in /usr/local/lib/python2.7/dist-packages/ error: can't create or remove files in install directory
i thought might bundle checking certainly attempting write stuff rootfs wrong?
the develop
command wants add together .pth
entry project can imported egg. see development mode documentation, develop
command docs.
the default set entry in site-packages. set different library path --install-dir
switch.
python easy-install
Comments
Post a Comment