'No matching distribution found for utilities
while trying to install the python package utilities:
pip3 install utilities
I faced this error:
Could not find a version that satisfies the requirement utilities (from
versions: )
No matching distribution found for utilities
Is it a python version issue (mine is 3.5)?? If it's the case, which package has replaced it?
Solution 1:[1]
There is no module named utilities in Python,I believe you have encountered importing a file called utilities.py
by the line import utilities
. Showing the full source code might help. Additionally, check the gitgub repo of your source code for a file called utilities.py
and copy it to your execution folder. If you are talking about python-utils
, check this link.
Python Utilities contains many standard utility modules to solve common problems. They are :
File System -- os, os.path, shutil
Running External Processes -- commands
Exceptions
HTTP -- urllib and urlparse
Check This link
If this doesn't solve your issue, try installing the utilities-package using :
pip install utilities-package
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 |