Not able to download and install Django using Pip on windows 7 - python

I am trying to install django using pip but I am not able to do it. Is there any other way to install Django.
I tried like below.
pip install Django
But I got the below error.
Retrying (Retry(total=4, connect=None, read=None, redirect=None)) after
connection broken
by 'ConnectTimeoutError(<pip._vendor.requests.packages.urllib3.conne
ction.VerifiedHTTPSConnection object at 0x00000000041C8198>, 'Connection to
pypi.python.org timed out. (connect timeout=15)')': /simple/djando/
Retrying (Retry(total=3, connect=None, read=None, redirect=None)) after
connection broken by
'ConnectTimeoutError(<pip._vendor.requests.packages.urllib3.conne
ction.VerifiedHTTPSConnection object at 0x00000000041C8160>, 'Connection to
pypi.python.org timed out. (connect timeout=15)')': /simple/djando/

Create a virtual environment and install django in it. If that doesn't work then try checking your python version and make sure its 3.4+, then upgrade the pip package, it should work after that.

Related

errors while using pip install on windows 10 and Ubuntu 18.04 lts

I'm not new with Python programming, today I tried to install Django using "pip install Django" on my computer.
I'm using Python 3.9.1, pip 20.2.3, PyCharm (community) 2020.3.2 .
I've tried everything, using pip3, trying to install libraries from pycharm termianl and from the pycharm interpreter configuration, I even format my computer(full foramt and the quick foramt) and nothing helped my.
I searched for similar problems here but all of them didn't work.
I get this problem over and over again (I tried to set the timeout to 100, and my internet connection is good and fast enough): (in this tryout I've tried to install numpy library, I get the same problem with every library that I tried)
(venv) C:\Users\achik\PycharmProjects\first>pip install numpy
WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("
HTTPSConnectionPool(host='pypi.org', port=443): Read timed out. (read timeout=15)")': /simple/numpy/
WARNING: Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("
HTTPSConnectionPool(host='pypi.org', port=443): Read timed out. (read timeout=15)")': /simple/numpy/
WARNING: Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("
HTTPSConnectionPool(host='pypi.org', port=443): Read timed out. (read timeout=15)")': /simple/numpy/
WARNING: Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("
HTTPSConnectionPool(host='pypi.org', port=443): Read timed out. (read timeout=15)")': /simple/numpy/
WARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnection
Pool(host='pypi.org', port=443): Read timed out. (read timeout=15)")': /simple/numpy/
ERROR: Could not find a version that satisfies the requirement numpy (from versions: none)
ERROR: No matching distribution found for numpy
Please help me, I'm about to lose my mind
UPDATE:
I formatted my computer and reinstall windows 10, installed python
3.7 and older version of PyCharm and it didn't work.
I formatted again my pc and installed Ubuntu 18.04 lts and again I have the same problem.
PLEASE help me!
I had the same problem. Sometimes it is because of internet connection and sometimes cmd working so slow.
If your antifilter is open, close it before executing commands on cmd.
And whenever you faced this problem close cmd and run it as admin again...
you can install needed packages without using pip as well.
For example download a suitable version of numpy and save it on C:\Python\Tools\script and run it using cmd.
In Pycharm sometime this type of issue happens due to their venv file, if possible then please remove venv file from pycharm directory any add python in the environment variable
and try to install NumPy from CMD.
I hope this will resolve your issue, I was also facing the same issue and tried this & fortunately being solved.
I had this same error while installing django using pip. I solved it by disabling the cache
pip --no-cache-dir install <package name>

Which repositories are pip packages installed from?

I need to download a package using pip. I ran pip install <package> but got the following error:
[user#server ~]$ pip install sistr_cmd
Collecting sistr_cmd
Retrying (Retry(total=4, connect=None, read=None, redirect=None)) after connection broken by 'NewConnectionError('<pip._vendor.requests.packages.urllib3.connection.
VerifiedHTTPSConnection object at 0x7f518ee0cd90>: Failed to establish a new connection: [Errno 101] Network is unreachable',)': /simple/sistr-cmd/
Retrying (Retry(total=3, connect=None, read=None, redirect=None)) after connection broken by 'NewConnectionError('<pip._vendor.requests.packages.urllib3.connection.
VerifiedHTTPSConnection object at 0x7f518ee0c290>: Failed to establish a new connection: [Errno 101] Network is unreachable',)': /simple/sistr-cmd/
Retrying (Retry(total=2, connect=None, read=None, redirect=None)) after connection broken by 'NewConnectionError('<pip._vendor.requests.packages.urllib3.connection.
VerifiedHTTPSConnection object at 0x7f518ee0c510>: Failed to establish a new connection: [Errno 101] Network is unreachable',)': /simple/sistr-cmd/
Retrying (Retry(total=1, connect=None, read=None, redirect=None)) after connection broken by 'NewConnectionError('<pip._vendor.requests.packages.urllib3.connection.
VerifiedHTTPSConnection object at 0x7f518ee0cf10>: Failed to establish a new connection: [Errno 101] Network is unreachable',)': /simple/sistr-cmd/
Retrying (Retry(total=0, connect=None, read=None, redirect=None)) after connection broken by 'NewConnectionError('<pip._vendor.requests.packages.urllib3.connection.
VerifiedHTTPSConnection object at 0x7f518ee0c190>: Failed to establish a new connection: [Errno 101] Network is unreachable',)': /simple/sistr-cmd/
Could not find a version that satisfies the requirement sistr_cmd (from versions: )
No matching distribution found for sistr_cmd
I verified that the source of the problem is the network blocking most sites because I am working behind a proxy (required by the organization). To allow these downloads, I need to compile the list of urls of the source of the downloads and send it to the network admins to unblock.
According to pip documentation (cited and explained in brief in the pip Wikipedia article), “Many packages can be found in the default source for packages and their dependencies — Python Package Index (PyPI)," so I went to the PyPI page for Biopython and found the github repository and the required dependencies for the package. There are also download links on the PyPI page and I want to be sure that all sources for the download are allowed. So does pip install from the original source of a package (the github repository or wherever the original package is hosted), the packages listed in the PyPI page under downloads, or does it search through both?
Thank you in advance for the help.
It appears a network connection, later you may try below:
pip install sistr-cmd
See the difference between - and _ for more info check here
According to user abarnert:
"If you run pip with the --verbose flag, it will show you all the links it considers. Generally speaking, it goes to https://pypi.org/simple/{PACKAGE} first. That page will have links to downloads for wheels and source for all versions that the maintainer has uploaded, and it will look for the appropriate version's wheel by trying its links in order. Usually there is no github repo listed as a source.
If you want to install everything from github (or any other location) that you know, the simplest thing to do is to manually give the repo to pip instead of just the package names. Ideally, install everything you care about that way on a machine that isn't firewalled from most of the internet, build a requirements.txt file (as explained here), then copy that requirements file to your firewalled machine and try to install it."
Running pip install with the --verbose flag shows extensive detail about where the package is being pulled from and about the network connection and traceback.

pip 1.5.6 upgrade behind proxy not working

I need to upgrade pip, and I'm using:
# python get-pip.py --proxy=[user:Password#]10.20.30.1:8082
but I get:
etrying (Retry(total=4, connect=None, read=None, redirect=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', NewConnectionError('<pip._vendor.requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x7fa5a1e84550>: Failed to establish a new connection: [Errno -2] Name or service not known',))': /simple/pip/
The proxy is working fine.
What type of proxy is it? If it is an NTLM proxy you need to use CNTLM
and then configure it with your proxy details.
Then set your --proxy for PIP to 127.0.0.1:3128

Cannot install djangorestframework on ec2 instance with pip

I use a micro ec2 instance with python 2.7.10 installed.
When i try to install djangorestframework with "pip install djangorestframework", it failed and here is the log:
Retrying (Retry(total=4, connect=None, read=None, redirect=None)) after connection broken by 'ConnectTimeoutError(, 'Connection to pypi.python.org timed out. (connect timeout=15)')'
The problem is pip will open a https connection to pyip. Re-check outbound security rule of the instance and add https rule

install package in python - firewall issue

I'm trying to install linkedin libraries, but have problems with connection (due to some firewall restrictions) and I get an error:
C:\Python27\Scripts>pip install linkedin
Collecting linkedin
Retrying (Retry(total=4, connect=None, read=None, redirect=None)) after connection broken by 'ProtocolError('Connectio
n aborted.', error(10061, 'No connection could be made because the target machine actively refused it'))': /simple/linke
din/
Retrying (Retry(total=3, connect=None, read=None, redirect=None)) after connection broken by 'ProtocolError('Connectio
n aborted.', error(10061, 'No connection could be made because the target machine actively refused it'))': /simple/linke
din/
Operation cancelled by user
Is there any chance to download linkedin libraries and install it locally?
If yes, can you provide any hints?
I've downloaded package from : https://pypi.python.org/pypi/python-linkedin/4.0
Regards,
Pawel
pip can install from downloaded file
pip install python-linkedin-4.0.tar.gz

Categories