Hello, I am trying to install the dependencies with pip3 install --require-hashes -r requirements.txt but received no matching distribution on a few libraries. For example:
ERROR: Could not find a version that satisfies the requirement array-record==0.4.1 (from -r requirements.txt (line 28)) (from versions: none)
ERROR: No matching distribution found for array-record==0.4.1 (from -r requirements.txt (line 28))
I have similar error for multiple libraries (array-record ,cachetools, babel, charset-normalizer, chex, ....). What is the suggested method to handle this error while ensuring using the same library version? Thank you a lot,
Hello, I am trying to install the dependencies with
pip3 install --require-hashes -r requirements.txt
but received no matching distribution on a few libraries. For example:I have similar error for multiple libraries (array-record ,cachetools, babel, charset-normalizer, chex, ....). What is the suggested method to handle this error while ensuring using the same library version? Thank you a lot,