I'm trying to install cdqa but it seems like the library is missing from pypi. it shows this message:
ERROR: Could not find a version that satisfies the requirement cdqa==1.3.9 (from versions: none)
ERROR: No matching distribution found for cdqa==1.3.9
anyone knows what happened and how to fix this?
The project of cdpa(https://pypi.org/project/cdqa/) is 404 now. You can try install it from source code. Quote from the github as below:
git clone https://github.com/cdqa-suite/cdQA.git
cd cdQA
pip install -e .
Related
so I am working on Linux(Raspbian) and I am unable to install the pyspellcheck module.
so previously I managed to install it by just
pip install pyspellcheck
but recently I had to factory reset my machine and I am not able to install pyspellcheck anymore.
I get the following error:
ERROR: Could not find a version that satisfies the requirement pyspellcheck (from versions: none)
ERROR: No matching distribution found for pyspellcheck
so I would just like to know how can I install it on my machine
NOTE:I am working on a Linux machine
There is no such a package at PyPI: https://pypi.org/project/pyspellcheck/ — error 404. What are you trying to install? Do you want pyspellchecker?
pip install pyspellchecker
I need to use rospy for my app, and when i try to install it via pip3 install rospy or pip3 install python-rospy it results an error: ERROR: Could not find a version that satisfies the requirement python-rospy (from versions: none) ERROR: No matching distribution found for python-rospy
I have no idea how to use it and where to download it
Thanks for any responces!
There could be multiple reasons behind these errors. I think you should first check if you have ROS1 installed on your system. Since you're going to use Python3, you'll have to install ROS1 Noetic. You can follow the instructions mentioned on http://wiki.ros.org/noetic/Installation/Ubuntu
If you already have ROS1 Noetic on your system, you should check if you've source ROS1 in your .bashrc. If source /opt/ros/neotic/setup.bash is already there, then something went wrong during the installation. You should install ROS again.
Hope this helps.
I have a requirements.txt that I'm pip installing from (pip install -r requirements.txt)
requirements.txt
numpy==1.18.2
pandas==1.1.4
requests==2.24.0
...
I'm getting a lot of errors with modules giving me this kind of error:
ERROR: Could not find a version that satisfies the requirement module==x.y.z
ERROR: No matching distribution found for module==x.y.z
So I'm debugging and I'd like to try using official download links instead of version numbers. I hope that I'm making sense, because I'm not too familiar with it yet but hopefully I'm being clear enough.
So instead of:
numpy==1.18.2
I would have:
numpy==https://pypi.org/project/numpy/1.23.0rc1/
I am trying to do legal text summarization and found this open source package, but I don't know how to install and use it. I tried using pip install letsum but it's giving me an error.
ERROR: Could not find a version that satisfies the requirement letsum (from versions: none)
ERROR: No matching distribution found for letsum
Below is the github documentation, any ideas how to use it?
https://github.com/Law-AI/summarization
Thank you in advance
You can follow these steps:
Clone the repository:
git clone https://github.com/Law-AI/summarization.git
Install dependencies
pip install -r summarization/supervised/requirements.txt
Get to summarization/supervised/legal-specific/LetSum:
cd summarization/supervised/legal-specific/LetSum
Open your IDE in the current directory and you should be able to import letsum without any problem!
I'm trying to install django-trumbowyg https://github.com/sandino/django-trumbowyg to my app
When I did pip install django-trumbowyg, it returned this error:
Could not find a version that satisfies the requirement django-trumbowyg (from versions: )
No matching distribution found for django-trumbowyg
Does anyone know what this means? And how I can fix it?
As https://pypi.python.org/pypi/django-trumbowyg#downloads shows, there's only a binary package for Python2 at PyPI.
So, you have to install the package directly from the official sources as pointed out by Rishav in the meantime.
Then ask the developer to upload a source package to PyPI and/or build the wheel as universal.
You may also get this error if your company firewall doesnt allow any package from external source. you might need to add a proxy in that case.
for example: pip install django-trumbowyg --proxy=proxy.companydomain.com: