django - Can't Install `pip` for `python 3.3` but worked fine for `python 2.7` -
i'm new python not programming. goal learn django web development.
i've been trying install later versions of python, pip , django. install pip python 2.7 fine i'm trying install on python 3, gives me error think related ssl certifications not sure how resolve it. confusion fact worked fine once doesn't happen again. appreciate help.
my code below:
~$> python3 /library/frameworks/python.framework/versions/3.3/bin/python3 ~$> pip /usr/local/bin/pip ~$> pip -v pip 1.5.6 /library/python/2.7/site-packages (python 2.7) ~$> sudo python3 /applications/get-pip.py downloading/unpacking pip cannot fetch index base url https://pypi.python.org/simple/ not find downloads satisfy requirement pip cleaning up... no distributions @ found pip storing debug log failure in /users/gemeni/.pip/pip.log ~$> i'm still stuck. used work around , installed pip...
easy_install pip==1.2.1
but version not 1.2.1 , can't install else pip now.
~$> pip install django
downloading/unpacking django
cannot fetch index base url https://pypi.python.org/simple/
could not find downloads satisfy requirement django
cleaning up...
no distributions @ found django
storing debug log failure in /users/gemeni/.pip/pip.log
~$> pip --version
pip 1.5.6 /users/gemeni/.virtualenvs/yara-project/lib/python3.3/site-packages (python 3.3)
can please me out figure out? installed python3.4 @ first saw django not supporting now. comes pip installed. read everywhere it's ssl issue , can solved modifying proxy setting i'm not sure how can done. thoughts?
pip python2
pip3 python3
try install package python3-pip distro package manager, use pip3 install django. come if other problem
like:
~#>apt-get install python3-pip ~$>pip3 install django
Comments
Post a Comment