not able to install a python package - python-3.x

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

Related

ERROR: Could not find a version that satisfies the requirement blpapi

I'm trying to install blpapi (python 3.7.3) using the steps described in the Bloomberg API library (https://www.bloomberg.com/professional/support/api-library/)
I installed the C++ API (also from the Bloom API library) and copy pasted blpapi3_32.dll and blpapi3_64.dll to their specific folder (C:\blp\DAPI). Basically I just followed the steps described in this page : https://medium.com/#johann_78792/getting-started-with-bloombergs-python-desktop-api-5fd083b4193a
when I excute the command :
python -m pip install --index-url=https://bcms.bloomberg.com/pip/simple/ blpapi
I get the error below:
ERROR : Could not find a version that satisfies the requirement blpapi
ERROR : No matching distribution found for blpapi
If I'm right, the python version shouldn't be the problem and I upgraded the PIP to the latest version,
I also tried installing blpapi using
python -m pip install blpapi
I get blpapi-0.0.0 installed successfully (which could be found in Pypi.org), however python doesn't import it giving me this error
ImportError: No module named blpapi
Any idea of how I can manage these errors would be great.
I would use the conda package manager which greatly simplifies things. There are many gotchyas, when trying to pip install blpapi, as can be seen here, here, here and here. Via conda this can be done with
conda install -c conda-forge blpapi

ModuleNotFoundError: No module named 'Qualtrics'

I am trying to follow the example available in
https://github.com/dwallach1/Qualtrics_API
Once I do the following
!pip install Qualtrics
It gives me the following
ERROR: Could not find a version that satisfies the requirement Qualtrics (from versions: none)
ERROR: No matching distribution found for Qualtrics
Then I follow the webpage provided
import Qualtrics
It gives me
ModuleNotFoundError: No module named 'Qualtrics'
Have anyone tried it before?
You should be importing this file
https://github.com/dwallach1/Qualtrics_API/blob/master/src/qualtrics.py
and you should not be installing it from pip
If you want to use a pip package, do have the python package below, check it out!
pip install py-qualtrics-api
https://pypi.org/project/py-qualtrics-api/

How to install plistlib in python3 virtualenv?

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.

Python ModuleNotFoundError: No module named 'win32event'

in my Python Script there is an ERROR with the line
import win32events
I still installed the package pypiwin32 (with pip install pypiwin32) but it seems that this is nor the right package.
Does someone know what I need to install to use win32events in Python?
You should install pywin32 package (not pypiwin32)!!!

Unable to install python-recsys module

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.

Resources