-
Notifications
You must be signed in to change notification settings - Fork 808
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pip install works, setuptools doesn't (Windows Python 3.6.8) #1320
Comments
when I try "pip install pywin32" I get: |
Looks suspiciously like a circular dependency issue |
I am also facing similar issue when running - |
Note to readers that |
@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
python setup.py install
python -c "import win32api"
The text was updated successfully, but these errors were encountered: