can't install pywin32 --strange error - python

i tried to install pywin32 in Pycharm and in cmd with "pip install pywin32" and i got that massage:
Could not find a version that satisfies the requirement pywin32 (from versions: )
No matching distribution found for pywin32

Related

isc_parser python library not installing in mac tried using pip

while installing requirements of this github repo:-
https://github.com/sentient-bread/CL-Project2
I am shown this error:-
ERROR: Could not find a version that satisfies the requirement isc_parser (from versions: none)
ERROR: No matching distribution found for isc_parser
i tried installing it using:-
pip install isc_parser and pip3 install isc_parser

Could not find a version that satisfies the requirement python-dotenv (from versions: none)

I am currently working on MAC and have created a new virtual environment for the project where i want to install the library - python-dotenv but getting below errors. To be noted that the python version on venv is Python 3.8.9. In this venv, i have 3 packages as of now -
pip 21.1.2
setuptools 57.0.0
wheel 0.36.2
Can someone please help with the below errors which i get after running the command pip install python-dotenv?
ERROR: Could not find a version that satisfies the requirement python-dotenv (from versions: none)
ERROR: No matching distribution found for python-dotenv
Try installing dotenv:
pip install dotenv

Unable to install tensorflow module in Python3

I'm installing tensorflow. My system has the following specifications:
py --version
Python 3.8.2
I tried the following commands to install tensorflow module
py -m pip install --upgrade tensorflow
ERROR: Could not find a version that satisfies the requirement tensorflow (from versions: none)
ERROR: No matching distribution found for tensorflow
py -m pip install tensorflow==2.2
ERROR: Could not find a version that satisfies the requirement tensorflow==2.2 (from versions: none)
ERROR: No matching distribution found for tensorflow==2.2
py -m pip install tensorflow==2.2.0
ERROR: Could not find a version that satisfies the requirement tensorflow==2.2.0 (from versions: none)
ERROR: No matching distribution found for tensorflow==2.2.0
What can I do to install this successfully on my machine?
TensorFlow supports only 64-bit system architecture. Hence it shows compatibility issue in 32-bit and no matching distribution found.

How to install pywin32 in anaconda

Errors that I am getting:
ERROR: Could not find a version that satisfies the requirement pywin32 (from versions: none)
ERROR: No matching distribution found for pywin32
The python version installed is: Python 3.7.6
Is there any workaround or manual process to install the package in anaconda?
Maybe, you can try using pypiwin32 instead of pywin32.
or
If you want to use pywin32 you can check this How do you install pywin32 from a binary file in tox on Windows?

pip install pygmaps python

I am trying to instal pygmaps for my Python 3.5:
pip install pygmaps
I am getting this message:
Could not find a version that satisfies the requirement pygmaps (from versions: ) No matching distribution found for pygmaps
You tried to install the old version of pygmaps. Here the newest https://github.com/thearn/pygmaps-extended
For installing from git use this command:
pip install git+https://github.com/thearn/pygmaps-extended
pip downloads from PyPI and there is nothing to download from https://pypi.python.org/pypi/pygmaps
Go to https://code.google.com/archive/p/pygmaps/downloads, download pygmaps-0.1.1.tar.gz, unpack it and install.

Categories