I'm trying to install pytable using either pycharm or pip but both attempts give the error "Conflicting Dependecies". And "The conflict is caused by : pytable 0.8.23a0 depends on basicproperty>=0.6.9a". So I tried installing the basicproperty version using pycharm and pip and it gave the error "enter image description hereCould not find a version that satisfies the requirement basicproperty (from versions: none)".What to do?
Can you try;
pip install pytables
Pytables is python hosted project. For install guide;
https://www.pytables.org/usersguide/installation.html
Related
I'm having problems with installing a package using pip. I tried :
pip install wx
Causing these errors :
ERROR: Could not find a version that satisfies the requirement wx (from versions: none)
ERROR: No matching distribution found for wx
I checked if pip was up to date which was the case. I'm on Python 3.10.6
Does anyone know a solution to this problem?
Try to specify an older version of wx, or if there is documentation on the package, read the requirements, maybe you need an older or newer version of python. Try also
pip install wxPython or https://pypi.org/project/wxPython/
I'm trying to add preprocess-kgptalkie in Python interpreter and I'm receiving these errors
Try to run this command from the system terminal. Make sure that you use the correct version of 'pip' installed for your Python interpreter located at '/home/amel/PycharmProjects/pythonProject1/venv/bin/python'.
ERROR: Could not find a version that satisfies the requirement preprocess-kgptalkie (from versions: none)
ERROR: No matching distribution found for preprocess-kgptalkie
I'm using Python 3.6 and pip 21.2.4
There is no preprocess-kgbtalkie package on PyPI. However, I was able to find a GitHub repo here. Install it with
pip install git+ssh://git#github.com/kgptalkie/preprocess_kgptalkie.git
I have downloaded the uncompyle6-3.7.4-py3.8 egg file from pypi.org website in order to decompile a .pyc file. When I am trying to install it using the pip command in command prompt pip install uncompyle6-3.7.4-py3.8, I get the following error:
ERROR: Could not find a version that satisfies the requirement uncompyle6-3.7.4-py3.8 (from versions: none)
ERROR: No matching distribution found for uncompyle6-3.7.4-py3.8
I am using the latest version of Python (3.8). I tried to download another uncompyle file for the earlier 3.7 version, but even then I get the same error. I have also upgraded pip to its latest version. On their website it is mentioned that for Python 3.7 and above, the code in decompyle3 is generally better, yet I get the same error for pycdc.
How could I fix this error? Thank you!
You can install .whl files with pip, not .egg. In order to install .egg file you need easy_install.
Try this command:
python -m easy_install https://files.pythonhosted.org/packages/ef/91/07f46d34bf8d3bf385785b98b13ebddaa414638f553d9b33c8aa320f45cd/uncompyle6-3.7.4-py3.8.egg
I'm trying to install a package called pyeto. Their website (https://pyeto.readthedocs.io/en/latest/) does not mention any problems regarding the installation and I can't find any installation related problems of other users. I'm doubting what solution I should look for (I would appreciate it to not have to reinstall python). I'm running python version 3.6.8 and the errors are presented below.
If you have an idea on how to solve this issue please let me know. I'm not an expert on how python runs in the background and how packages are installed through pip. Thanks in advance! B.
ERROR: Could not find a version that satisfies the requirement pyeto (from versions: none)
ERROR: No matching distribution found for pyeto
EDIT: pip --version
pip 20.2.2 from c:\users\user\anaconda3\lib\site-packages\pip (python 3.6)
The author hasn't put it on pypi, so pip is treating it as an unknown package.
See https://github.com/woodcrafty/PyETo/issues/3
Check on the website on what version it is supported.
Am working on Python 2.7.14 and I want to use UnityEngine, to run my script from Unity, when I try to install it with pip : pip install UnityEngine, this error come up:
`Could not find a version that satisfies the requirement UnityEngine (from versions: )
No matching distribution found for UnityEngine`
How can I fix this? Can anyone help me with this please?
PS: Am working on windows
There is no UnityEngine at PyPI (i.e. the package does not exist so cannot be pip installed).
May be you need http://forum.unity3d.com/threads/86461-Python-interpreter-in-Unity or https://github.com/exodrifter/unity-python but they're not pip-installable.