Open fdav10 opened 5 years ago
when I try "pip install pywin32" I get: Could not find a version that satisfies the requirement pywin32 (from versions: ) No matching distribution found for pywin32
Looks suspiciously like a circular dependency issue
when I try "pip install pywin32" I get: Could not find a version that satisfies the requirement pywin32 (from versions: ) No matching distribution found for pywin32
I am also facing similar issue when running -
pip install -r requirements.txt
and my requirement.txt contains pywin32==224
3. at shell run
python setup.py install
Note to readers that python setup.py
and the use of setup.py as a command line tool are deprecated. pywin32 itself needs to move away from it. #2208
@fdav10 Due to many changes in the Python packaging ecosystem and improvements to pywin32's own installation, could you try again using:
@shriharshmishra & @macginitie Could you also make sure you are trying to install from a Windows machine ?
I'm finding that installing pywin32 using pip succeeds whereas listing it as a dependency using the
install_requires
argument tosetup
in a setup.py file fails. This is on Windows 10 using Python 3.6.8 64 bit and pywin32==224.My steps:
Pip install
pip install pywin32
python -c "import win32api"
Results in no output - i.e. successful imoprt
Setuptools
setup(name='testpackage', version=1, install_requires=[ "pywin32", ])
Traceback (most recent call last): File "", line 1, in
ModuleNotFoundError: No module named 'win32api'