This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pitrou
Recipients dstufft, ncoghlan, pitrou
Date 2015-06-09.18:01:53
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1433872913.68.0.595008906061.issue24418@psf.upfronthosting.co.za>
In-reply-to
Content
This is what happens when building Python with conda-build (which implies doing "make install" with a custom prefix):


[...]
if test "xupgrade" != "xno"  ; then \
	case upgrade in \
		upgrade) ensurepip="--upgrade" ;; \
		install|*) ensurepip="" ;; \
	esac; \
	LD_LIBRARY_PATH=/home/antoine/miniconda3/conda-bld/work/cpython-default ./python -E -m ensurepip \
		$ensurepip --root=/ ; \
fi
Ignoring indexes: https://pypi.python.org/simple/
Requirement already up-to-date: setuptools in /home/antoine/.local/lib/python3.5/site-packages
Requirement already up-to-date: pip in /home/antoine/.local/lib/python3.5/site-packages
[...]


Note that conda-build *does* set PYTHONNOUSERSITE to make builds as isolated as possible, but the Python Makefile deliberately ignores it using "python -E"!
History
Date User Action Args
2015-06-09 18:01:53pitrousetrecipients: + pitrou, ncoghlan, dstufft
2015-06-09 18:01:53pitrousetmessageid: <1433872913.68.0.595008906061.issue24418@psf.upfronthosting.co.za>
2015-06-09 18:01:53pitroulinkissue24418 messages
2015-06-09 18:01:53pitroucreate