ebb-earl-co / tidal-wave

Waving at the TIDAL music service
Apache License 2.0
35 stars 2 forks source link

Not Able To Install Program #93

Closed Rajeshsahoo12 closed 4 months ago

Rajeshsahoo12 commented 4 months ago

Hi Dev,

I am trying to install tidal-wave program on windows 10 based PC using this command python -m pip install tidal-wave. But facing below error.

WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', FileNotFoundError(2, 'No such file or directory'))': /simple/tidal-wave/ WARNING: Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', FileNotFoundError(2, 'No such file or directory'))': /simple/tidal-wave/ WARNING: Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', FileNotFoundError(2, 'No such file or directory'))': /simple/tidal-wave/ WARNING: Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', FileNotFoundError(2, 'No such file or directory'))': /simple/tidal-wave/ WARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', FileNotFoundError(2, 'No such file or directory'))': /simple/tidal-wave/

ERROR: Could not find a version that satisfies the requirement tidal-wave (from versions: none) ERROR: No matching distribution found for tidal-wave

AVAEO commented 4 months ago

Hi Dev,

I am trying to install tidal-wave program on windows 10 based PC using this command python -m pip install tidal-wave. But facing below error.

WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', FileNotFoundError(2, 'No such file or directory'))': /simple/tidal-wave/ WARNING: Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', FileNotFoundError(2, 'No such file or directory'))': /simple/tidal-wave/ WARNING: Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', FileNotFoundError(2, 'No such file or directory'))': /simple/tidal-wave/ WARNING: Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', FileNotFoundError(2, 'No such file or directory'))': /simple/tidal-wave/ WARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', FileNotFoundError(2, 'No such file or directory'))': /simple/tidal-wave/

ERROR: Could not find a version that satisfies the requirement tidal-wave (from versions: none) ERROR: No matching distribution found for tidal-wave

Hey! Does this happen with every pip package or just Tidal-Wave? Sometimes this can be caused by Python itself being a bit funky. Sometimes a reinstall of Python helps. If every package returns this error, a quick Google on StackOverflow gives this command: curl https://bootstrap.pypa.io/get-pip.py | python.

N.B. I'm not the dev, just really like this project.

ebb-earl-co commented 4 months ago

@Rajeshsahoo12 the error output that you've included is an HTTP error, letting you know that your pip.exe, however you installed it, is not able to find the resource over the Internet; i.e. it's saying that there is no such thing as tidal-wave at PyPi's repository. This is false, as I have just now installed it on my system (not Windows, but the point is that tidal-wave IS available from PyPi) image

If you check out this StackOverflow question, you'll see that your error is an Internet connection error on your Windows system, nothing to do with tidal-wave.

Rajeshsahoo12 commented 4 months ago

@Rajeshsahoo12 the error output that you've included is an HTTP error, letting you know that your pip.exe, however you installed it, is not able to find the resource over the Internet; i.e. it's saying that there is no such thing as tidal-wave at PyPi's repository. This is false, as I have just now installed it on my system (not Windows, but the point is that tidal-wave IS available from PyPi) image

If you check out this StackOverflow question, you'll see that your error is an Internet connection error on your Windows system, nothing to do with tidal-wave.

Ohhhh okay. I have tried re-installation of python entirely the same version 3.10.0

But sadly no success.

ebb-earl-co commented 4 months ago

Do you have a proxy active? For example, the Fiddler program acting as a man-in-the-middle proxy? Can you run a pretty "default" command and include the output?

python.exe -m pip install pip --upgrade --verbose
Rajeshsahoo12 commented 4 months ago
python.exe -m pip install pip --upgrade --verbose

I ran this command python.exe -m pip install pip --upgrade --verbose

python.exe -m pip install pip --upgrade --verbose

Using pip 24.0 from C:\Users\Rajesh Sahoo\AppData\Local\Programs\Python\Python310\lib\site-packages\pip (python 3.10) Requirement already satisfied: pip in c:\users\rajesh sahoo\appdata\local\programs\python\python310\lib\site-packages (24.0) WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', FileNotFoundError(2, 'No such file or directory'))': /simple/pip/ WARNING: Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', FileNotFoundError(2, 'No such file or directory'))': /simple/pip/ WARNING: Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', FileNotFoundError(2, 'No such file or directory'))': /simple/pip/ WARNING: Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', FileNotFoundError(2, 'No such file or directory'))': /simple/pip/ WARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', FileNotFoundError(2, 'No such file or directory'))': /simple/pip/

Rajeshsahoo12 commented 4 months ago

Do you have a proxy active? For example, the Fiddler program acting as a man-in-the-middle proxy? Can you run a pretty "default" command and include the output?

python.exe -m pip install pip --upgrade --verbose

I have fiddler installed but it is not running ryt now.

Rajeshsahoo12 commented 4 months ago

Do you have a proxy active? For example, the Fiddler program acting as a man-in-the-middle proxy? Can you run a pretty "default" command and include the output?

python.exe -m pip install pip --upgrade --verbose

How do I check whether I am running behind proxy..? I am just using one wrap dns 1.1.1.1 , 1.0.0.1 for IPv4 & 2606:4700:4700::1111 , 2606:4700:4700::1001 for IPv6

Rajeshsahoo12 commented 4 months ago

Do you have a proxy active? For example, the Fiddler program acting as a man-in-the-middle proxy? Can you run a pretty "default" command and include the output?

python.exe -m pip install pip --upgrade --verbose

How do I check whether I am running behind proxy..? I am just using one wrap dns 1.1.1.1 , 1.0.0.1 for IPv4 & 2606:4700:4700::1111 , 2606:4700:4700::1001 for IPv6

I tried installing pandas now. It is installing successfully.

image

Rajeshsahoo12 commented 4 months ago

Do you have a proxy active? For example, the Fiddler program acting as a man-in-the-middle proxy? Can you run a pretty "default" command and include the output?

python.exe -m pip install pip --upgrade --verbose

How do I check whether I am running behind proxy..? I am just using one wrap dns 1.1.1.1 , 1.0.0.1 for IPv4 & 2606:4700:4700::1111 , 2606:4700:4700::1001 for IPv6

I tried installing pandas now. It is installing successfully.

image

Thanks @ebb-earl-co @AVAEO. Now it got installed. What I have done is undo the usage of cloudfare wrap dns, flushdns. Re-assure that python is added to PATH by verifying under ENVIRONMENT VARIABLES

image