python - I have python3.4 but no pip or ensurepip.. is something wrong with my python3.4 version? -
i've read in multiple places python3.4 ships pip. os lubuntu 14.04 , default python version python 2.7.6 in
/usr/bin
it says have python3.4 installed (when run python3 -v says have python 3.4.0). made post earlier last week: how use pip 3 python 3.4?
one of comments reply said "it may worth mentioning python3.4 should ship pip default. python3 -m pip should work out of box. if not, there's python -m ensurepip bootstrap pip. get-pip.py should not necessary here."
i can confirm not have pip because did
pip -v
and said pip not installed. tried running
python3 -m pip
and said
/usr/bin/python3: no module named pip
i tried
python -m ensurepip python3 -m ensurepip
and said
/usr/bin/python: no module named ensurepip /usr/bin/python3: no module named ensurepip
with said, there wrong version of python3 because not have pip or ensurepip? i'm asking because i've read in multiple places (for example, in previous question) python3.4 comes pip , don't think true case.
my end goal run django1.8 using python 3.4.3.
on ubuntu , derivates have install python3-pip
python3’s pip.
apt-get install python3-pip
Comments
Post a Comment