Problems installing wquantiles on Windows - python

Using a Mac, I wrote a package named game_prediction found here. It uses the wquantiles package which I have included in the requirements.txt. I had no issues pip installing and using this package when using my Mac (Anaconda distribution), however, when using my PC (Anaconda distribution) running pip install wquantiles returns the following... ERROR: Could not find a version that satisfies the requirement wquantiles (from versions: none) ERROR: No matching distribution found for wquantiles.
I can pip install wquantiles using Google Colab. So, I am thinking it must be an issue with PCs? My machine?
I have uninstalled Anaconda and reinstalled it but am still having the same issue.
What can I do to fix this?

Related

can't install mediapipe? python 3.8

I have tried to use pip install mediapipe, and other similar methods of pip install to install mediapipe as i need it for one of my projects. I am stumped and don't know what to do anymore. I have python 3.8 and the latest version of pip.
This is the error I keep getting:
ERROR: Could not find a version that satisfies the requirement mediapipe (from versions: none)
ERROR: No matching distribution found for mediapipe
you can specify the specific version of the lib
such as:
pip install mediapipe==0.8.9.1 (the version which you want.)
You have to change the python version to 3.7 with 64bit then only you can install it
if you can create a virtual environment for it as well so that will do great

Why can I not install oathlib on new python environment?

I used pyenv to install python 3.9.0, and then I created a virtual environment with 3.9.0. I have installed all the pip packages I need for my regular running of my python projects, except that one of them won't install:
> pip install oathlib
ERROR: Could not find a version that satisfies the requirement oathlib (from versions: none)
ERROR: No matching distribution found for oathlib
The problem is I am running a virtual environment just like this one on another pc, and I installed oathlib on it a few weeks ago, and it runs fine.
How can I get oathlib installed? Is there a problem with some latest version of oathlib that it just won't install in my pyenv? My pip package is the latest one available, so pip is not the issue.
Maybe u wanna install OAuthlib, I don't find oathlib?
pip install oauthlib

pip does not find the version of the package to install

I want to install pytorch3d version 0.3.0 or above, but pip sees only 0.0.1 version for installing. I runned next commands:
pip install pytorch3d==0.3.0
And got the next error:
ERROR: Could not find a version that satisfies the requirement pytorch3d==0.3.0 (from versions: 0.0.1)
ERROR: No matching distribution found for pytorch3d==0.3.0
If I run the install command without a specific version, pip will install the package with version 0.0.1.
My environment:
Windows 10 x64
Python 3.9.7
pip 21.2.4
Note:
direct internet connection, no proxy used
I haven't others versions python on pc
same errors when installing next packages: torchvision==0.7.0, torch==1.6.0
I tried with the virtualenv and without them
I installed Python from the windows store.
From their installation guide and your requirements use:
pip install pytorch3d -f https://dl.fbaipublicfiles.com/pytorch3d/packaging/wheels/py38_cu102_pyt190/download.html
Specified package cannot be installed via pip, because not supported on my os(Windows 10). This can be seen on the page with the version and available files for download of the required package.

Problems installing tensorflow on Windows 10

i have been trying to install TensorFlow on my Win10 machine using pip, I have never had a problem using pip before but for some reason when I run pip install tensorflow with pip version 21.0.1 I get the following error
ERROR: Could not find a version that satisfies the requirement tensorflow
ERROR: No matching distribution found for tensorflow
I have tried to install using the --user tag but same problem occurs, i got the install command from the official website https://www.tensorflow.org/install,
if anyone knows what is causing pip to think the package doesn't exist any help appreciated.
Tensorflow supports only Python 3.5-3.8 versions. That might cause a problem.
You can read more at a similar post about that error; Could not find a version that satisfies the requirement tensorflow
I suggest you to use virtual environments created with Conda.
https://docs.anaconda.com/anaconda/install/windows/
If you use Conda, you can specify required Python version, pip libraries to that env and use it from anywhere in your OS.

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?

Categories