I'd like to install cookielib for Python 3.5. However, I'm getting an unclear error message:
Tom#osx:~/mycode$ pip3 search cookielib
cookielib3 -
Tom#osx:~/mycode$ pip3 install cookielib3
Collecting cookielib3
Could not find a version that satisfies the requirement cookielib3 (from versions: )
No matching distribution found for cookielib3
What is going on here?
If you searched on PyPi, you probably saw: https://pypi.python.org/pypi/cookielib3/0.0.0
It's a dummy package. In Python 3 there's no cookielib or cookielib3. According to Python 3.2 - cookielib you should use http.cookiejar instead.
Related
When i execute the command in my terminal
pip install --upgrade tensorflow
i get an error
ERROR: Could not find a version that satisfies the requirement tensorflow (from versions: none)
ERROR: No matching distribution found for tensorflow
There was a similiar question in stackoverflow. The cause for this error is that tensorflow supports only up to Python 3.7. So i checked my version
python3 --version3
--> 3.8.1
I tried to downgrade it with
conda install python=3.7
---> Collecting package metadata (current_repodata.json): done
Solving environment: done
# All requested packages already installed.
but it does not work. How can this be?
I am using manjaro as a distro.
Could the Python3.7 you're running be the 32-bit version? Tensorflow requires the 64-bit version of python.
I'm trying to install Intel's numpy version through pip on Windows as described on their website.
> python -m pip install intel-numpy
Collecting intel-numpy
Could not find a version that satisfies the requirement intel-numpy (from versions: )
No matching distribution found for intel-numpy
I have 64-bit Python on Windows 10 and the main numpy package isn't installed. What am I doing wrong?
The problem was my version of Python: intel-numpy is currently packaged for Python 3.6 and not 3.7. Installing Python 3.6 fixed it.
I am trying to install a module in python but it is throwing me below error. I dont understand. I am also not able to find wheel file for this module.
Anyone else imported this module ?
Module Name :generatengrams
pip install generatengrams
from generatengrams import ngrammatch
Getting below error:
Could not find a version that satisfies the requirement generatengrams (from versions: )
No matching distribution found for generatengrams
pip install ngram
Check Python ngram. PyPI
I've created a Python 3 virtual environment, and I am trying to install the plistlib package.
However, I am getting the following error:
(venv) venv$pip install --upgrade plistlib
Collecting plistlib
Could not find a version that satisfies the requirement plistlib (from versions: )
No matching distribution found for plistlib
The plistlib module is within the standard libraries. You don't need to install it, it will be available for import in your existing Python 3 installation.
I am trying to install python-recsys module. But i get this error
Could not find a version that satisfies the requirement python-recsys
(from versions: ) No matching distribution found for python-recsys
I am using Python 3.4
The code that i am using to install the module is:
pip.exe install python-recsys
Recsys is not supported by python 3.X but only python 2.7.