Python 3.4.4 - pip collection error - python

I would really appreciate some help on the below query - I've been trying to get pip to work for the best of a day and really struggling.
Regardless of which module I try to install I keep getting a "Could not find a version that satisfies the requirement openpyxl (from version s: )
No matching distribution found for openpyxl
Please see a screenshot below of the error:
enter image description here
I've looked at around the website, including the following posts, to help with installing pip but still unsure as to why it isn't working.
'pip' is not recognized as an internal or external command
Fatal error in launcher: Unable to create process using ""C:\Program Files (x86)\Python33\python.exe" "C:\Program Files (x86)\Python33\pip.exe""
Any help would be massively appreciated!

Have you tried to check the internet connection?
From your screenshot, seems like you cannot access the URL as follow:.
https://pypi.python.org/simple/openpyxl/

Related

I somehow screwed this up badly (Python PIP)

I was cleaning out my laptop and somehow screwed up my Python installation. Now I'm getting an error that I can't even find the answer to in Google (I usually copy and paste the error msg as a Google search and it usually leads me to an answer on here or other sites). This is the error msg verbatim: Fatal error in launcher: Unable to create process using '"C:\Python310\python.exe" "C:\Python310\Scripts\pip.exe" install Flask': The system cannot find the file specified.
I just reinstalled Python 3.10 via the installer from the Python site (so as not to screw up with Linux install since it likes to auto install 2.7 for some reason)
Any help would be greatly appreciated as always

How to install keyboard module without pip?

so I'm trying to install the keyboard module on a raspberry pi, but I can't use pip. Is there a way I can install it in a way that works? So far I have tried installing the extracted zip file from the pypi website, but nothing, not even the example code, works. I have attached a picture of what error I am getting when running the example code that comes in the folder. Thanks anyone for your help. Error message:

convert kaffe to tensorflow - Error: unknown type, unable to resolve "kaffe", IntelliSense may be missing

I copied the convert.py file from https://github.com/ethereon/caffe-tensorflow for translating caffe files to tensorflow format. I'm not able to Import kaffe. I tried to pip install but couldnt find a Version that satisfied the requirement kaffe.
Error: unknown type, unable to resolve "kaffe", IntelliSense may be missing
How can I download or Import this module?
Thanks!
In general, downloading single files from github isn't a good idea. If you aren't able to pip your module, better clone whole repository. Every well documented module has a manual on how to install.
Also, when using pip make sure what is the name of the module in pypi.
PS: check this question, maybe it somehow resolves your problem.

Unable to download praw using pip

I'm currently working my way through this guide which details how to make a reddit bot. followed the first step and ran my code in Python IDLE but had an issue because I didn't have PRAW downloaded.
My question is how exactly do I download PRAW? I looked around and tried downloading it through a few methods but none of them seemed to work for me. Currently working my way through this method but I keep getting an error:
Fatal error in launcher. Unable to create process using...
Try the following
Download the zip from https://pypi.python.org/pypi/praw#downloads
Unzip.
python setup.py install

'decompression failed' error when downloading xlrd python package

I get the 'decompression failed' error when downloading xlrd python package from the following link. https://pypi.python.org/pypi/xlrd
I have downloaded python packages in the past but never got this error. Pls can someone tell me what may be the source of the error.
Safari appears to be broken for that link, I see the same error when I use that browser.
Either use a different browser (both Chrome and Firefox handle the file just fine), or use curl from the command line:
curl -O "https://pypi.python.org/packages/source/x/xlrd/xlrd-0.9.0.tar.gz"

Categories