Trying to install the library in my Ubuntu 17.04 machine and also with some other machines with Ubuntu 17.4 but seems like in not yet supported because I'm always facing the following problem
W: The repository 'http://ppa.launchpad.net/cs50/ppa/ubuntu zesty Release' does not have a Release file.
E: Failed to fetch http://ppa.launchpad.net/cs50/ppa/ubuntu/dists/zesty/main/source/Sources 404 Not Found
which cause this problem E: Unable to locate package libcs50 when attempting to install it using sudo apt-get install libcs50 as mensioned in the REDME file.
Anyone faced the same problem and solved it.
Thanks in advance
Just for helping people who faced the same problem :
I Opened an issues in the GitHub repository and they fixed it : Just follow the instructions in the README.
Related
In the purpose of using tgen, I need to run the following command.
sudo apt-get install cmake libglib2.0-0 libglib2.0-dev libigraph1 libigraph-dev
But I have the following problem
Reading package lists Done
Building dependency tree Done
Reading state information Done
E: Unable to locate package libigraph1
My system is running on Ubuntu 22.04.1 LTS
I searched for way to correct the problem or even workaround but found nothing.
Can someone help me ?
22.04 has libigraph2, not libigraph1
https://packages.ubuntu.com/jammy/libigraph2
I am trying to install Docker on RHEL whose version details are shown below
I have downloaded the rpm docker-ce-20.10.2-3.el7.x86_64.rpm from here. And I run the following install command
sudo yum install /home/projuser/usr/share/Docker/docker-ce-20.10.2-3.el7.x86_64.rpm
Error comes up suggesting that docker-ce-rootless-extras is required.
Error: Package: 3:docker-ce-20.10.2-3.el7.x86_64 (/docker-ce-20.10.2-3.el7.x86_64)
Requires: docker-ce-rootless-extras
Here is the full screenshot of error
As per the message I try to install docker-ce-rootless-extras-20.10.2-3.el7.x86_64.rpm that I downloaded from here using command shown below
sudo yum install /home/projuser/usr/share/Docker/docker-ce-rootless-extras-20.10.2-3.el7.x86_64.rpm
I get an error that suggests that docker-ce is required
Error: Package: docker-ce-rootless-extras-20.10.2-3.el7.x86_64 (/docker-ce-rootless-extras-20.10.2-3.el7.x86_64)
Requires: docker-ce
Here is the complete screenshot
So I am not sure how to resolve this dependency as docker-ce and docker-ce-rootless-extras are both not getting installed with dependency on each other. Please let me know if you need any other details.
Please help resolve this
Hope it not too late. You have to install both packages at the same time.
rpm -i docker-ce-XXXXX docker-ce-rootless-extras-XXXXX
This command is working for me.
you need to install the centos package on RHEL. installing the correct package resolved the same issue I was facing. check out this Link
I'm trying to install ROS indigo on Ubuntu 14.04.5 (fresh copy).
After having infinite issues with unmet dependencies and apt-get I tried to use aptitude instead. Trying to separately install the "unmet" dependencies I found that the issue was in packages being too new meaning that the version requested by ROS was older than the one that is installed.
Aptitude gives the ability to replace the newer packages with the older one that are requested..
Am I stupid or has someone encountered the same issues as I did?
No its not the problem, as i have myself reinstalled the ROS indigo in my ubuntu 14.04 LTS few weeks before. U must have missed to follow some step given in the tutorial completely as a result u cant install the ros perfectly. I also used to get similar problems at first but, as i again tried it, it was successfully installed. so try again once, from starting.
I have been trying to install condor on my centos virtual machine but keep getting the following errors:
--> Finished Dependency Resolution
Error: Package: condor-classads-8.5.5-1.el6.x86_64 (htcondor-development)
Requires: libpcre.so.0()(64bit)
Error: Package: condor-8.5.5-1.el6.x86_64 (htcondor-development)
Requires: ecryptfs-utils
Error: Package: condor-8.5.5-1.el6.x86_64 (htcondor-development)
Requires: libpcre.so.0()(64bit)
You could try using --skip-broken to work around the problem
You could try running: rpm -Va --nofiles --nodigest
I looked around online and tried all the suggestions but nothing's worked. I did the next logical thing and tried to install those packages but doing yum install ecryptfs-utils gave me "Nothing to do," message. Same with libpcre.so.0() I'm a beginner with Linux so I don't know what I'm doing wrong here. Help appreciated.
I had the same issue, and this was happening because yum was trying to install different version of condor. I was running centos 6.6, but yum was trying to install centos 7 (rhel 7) version. The reason for this was, by mistake, I initially downloaded and setup the rhel7 repo details of condor, and results got cached.
The solution is to clear yum cache (yum clean all), download the correct condor repo for your CentOS version/arch (use rpm -q centos-release to find this out), and then install (yum install condor-all).
Get condor from the official location. It has all the binaries it needs.
Unable to update ubuntu 16.04 due to error
Signature by key 3B068FB4789ABE4AEFA3BB491397BC53640DB551 uses weak digest algorithm (SHA1).
Kindly share if any one have its solution.
Actually what you are seeing is probably just a warning you get using
sudo apt-get update
This is probably an issue on Google end and it just reports the issue.
But this command just check for the updates ... Maybe I am wrong but I don't think it should prevent you from upgrading your packages.
To check if any packages upgrades are available (and then install) them you should run:
sudo apt-get upgrade