I want to try Ghost.py.
its documentation says that installation require PyQt or PySide.
I have installed pyqt4-dev-tools using command apt-get install pyqt4-dev-tools on my Kubuntu 13.10.
I am getting error
root#alok:~# pip install Ghost.py
Downloading/unpacking Ghost.py
Could not find a version that satisfies the requirement Ghost.py (from versions: 0.1a, 0.1a2, 0.1a3, 0.1b, 0.1b2, 0.1b3)
Cleaning up...
No distributions matching the version for Ghost.py
Storing complete log in /root/.pip/pip.log
I have installed PySide too still I am not able to install Ghost.py using pip install Ghost.py
using pip is so straight forward but I am not able to figure out what is wrong this time.
output of /root/.pip/pip.log is available at http://paste.ubuntu.com/7189458/
I had the same problem on OSX with PyQt installed via Homebrew.
Using pip install --pre Ghost.py made it work. This is also suggested in the pip.log you provide.
Related
I want to use DeepSpeech of Mozilla on my Linux 22.04 system, following this website:
https://deepspeech.readthedocs.io/en/r0.9/?badge=latest
At the very beginning line, at
pip3 install deepspeech
I got this error:
ERROR: Could not find a version that satisfies the requirement deepspeech (from versions: none)
ERROR: No matching distribution found for deepspeech
I ran into internet and followed all methods such as upgrading pip3, using pip instead of pip3. I could not solve the problem.
This website:
https://github.com/mozilla/DeepSpeech/issues/3693
suggests to use archive. I did not understand which repository should I archive at this step.
It is very nice of you if you can help me
The pip command you mentioned above worked for me:
Try updating your linux packages
sudo apt update
sudo apt upgrade
Then trying again if it does not work trying using python
python -m pip install deepspeech
I'm trying to install opencv-python using the following command sudo pip3 install opencv-python but I keep getting the following error ERROR: Could not find a version that satisfies the requirement opencv-python (from versions: none)
ERROR: No matching distribution found for opencv-python
I tried upgrading the pip with the command pip install --upgrade pip and than trying again to install the opencv-python, but I'm still getting the same error.
This is due to the fact that there a no .whl on pypi for the raspberry architecture. You can also see this on the FAQ section of opencv-python README on Github:
Q: Pip fails with Could not find a version that satisfies the requirement ...?
A: Most likely the issue is related to too old pip and can be fixed by running pip install --upgrade pip. Note that the wheel (especially manylinux) format does not currently support properly ARM architecture so there are no packages for ARM based platforms in PyPI. However, opencv-python packages for Raspberry Pi can be found from https://www.piwheels.org/.
You should always check these pages for additional dependencies or installation notes for special architectures if you are facing any issues.
Note that you can quickly get there by visitng the Pypi page and then selectin the Homepage button
I am trying to install "CMake" with command
pip3 install CMake.
Its gives an error for a module "skbuild"
from skbuild import setup, ModuleNotFoundError: No module named 'skbuild'
But but when tried to install skbuild with command
pip3 install skbuild
it gives error
"Could not find a version that satisfies the requirement skbuild (from versions: ) No matching distribution found for skbuild".
I am not able to solve this error. Please help. I trying the implementation it on Window 10. Using Python 3.7.0. I tried couple of versions of pip3 (10.0.1, 9.0.3, 9.0.2, 9.0.1). Nothing is working.
Try pip install scikit-build. For me, pip install cmake works properly afterwards.
this worked for me while installation of this github repo https://github.com/ultralytics/yolov3
# For pip
pip install scikit-build
# For pip3
pip3 install scikit-build
There are pre-compiled binaries available on THIS page for Windows as MSI packages and ZIP files. You can find the one for the OS you are using.
If you want to proceed with your current approach then can you can probably refer THIS LINK
I've been searching the web for ways to solve this issue but nothing works.
I have a web server with CentOS 6.7 and I've successfully installed python 2.7.10 on it (it comes with version 2.6.6)
I followed up to step two in this site: https://cpaneltips.com/install-python-2-7-python-3-x-centos-cpanel/
I then installed virtualenv (using pip) and created another directory called "news"
Installed virtualenv and activated it so I have a python 2.7.10 environment. I ran "pip install scrapy"
But I have been getting this frustrating error:
Could not find a version that satisfies the requirement Twisted>=10.0.0 (from scrapy) (from versions: )
Some externally hosted files were ignored as access to them may be unreliable (use --allow-external Twisted to allow).
No matching distribution found for Twisted>=10.0.0 (from scrapy)
I then ran "pip install --allow-external scrapy scrapy"
still doesn't work... What am I missing?
wget https://pypi.python.org/packages/source/T/Twisted/Twisted14.0.0.tar.bz2#md5=9625c094e0a18da77faa4627b98c9815 --no-check-certificate
tar -vxjf Twisted-14.0.0.tar.bz2
cd Twisted-14.0.0
python setup.py install
pip install scrapy
It's clear you need twisted, you can firstly install twisted in your virtualenv:
pip install twisted
and then install scrapy:
pip install scrapy
This worked for me:
wget https://files.pythonhosted.org/packages/12/2a/e9e4fb2e6b2f7a75577e0614926819a472934b0b85f205ba5d5d2add54d0/Twisted-18.4.0.tar.bz2
tar -vxjf Twisted-18.4.0.tar.bz2
cd Twisted-18.4.0
python setup.py install
pip install scrapy
I'm very new in Python and need to install asyncmongo package for my environment. But when I
excuting pip install asyncmongo it fails with the following error.
C:\git\project>pip install asyncmongo
Downloading/unpacking asyncmongo
Could not find any downloads that satisfy the requirement asyncmongo
Some externally hosted files were ignored (use --allow-external asyncmongo to allow).
Cleaning up...
No distributions at all found for asyncmongo
Storing debug log for failure in C:\Users\Name\pip\pip.log
What I'm doing wrong?
I had the same issue just now (guessing that the library you're trying to install doesn't have a distribution up on the repository which pip is using). Instead, install the easy_install utility and do:
easy_install asyncmongo
Also, as a side note, I'd recommend using virtualenv and virtualenvwrapper which comes with pip/easy_install.
They segregate your python installs and it is basically like using a python install for every project you work on instead of sharing it globally. It includes both pip and easy_install which is useful because when I can't find something with pip or if the pip install fails, I'm usually able to find it with easy_install.
I found the solution. The problem was caused because of asyncmongo 1.2.2 sources was hasted on the amazon file server, so in that case pip should be invoked with additional flags (--allow-external packagename and --allow-unverified packagename) so to install it properly follwing command should be executed:
pip install --allow-external asyncmongo --allow-unverified asyncmongo asyncmongo
You are on Windows platform and pip is not as great for Windows as for Linux or Mac. easy_install has some some advantages on Windows, such as installing a precompiled .exe binary.
On a different note, you may consider using motor instead of asyncmongo. It is newer and looks more elegant.