Not able to install Google Chome latest version on Linux Mint [closed] - linux

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 5 years ago.
Improve this question
I want Google Chrome latest version on my Linux Mint system.
When I am trying to install Chrome on my Linux Mint system it gives me error like this:
Error: Dependency is not satisfiable: libfontconfig1 (>= 2.9.0)
Now when I am trying to install "libfontconfig1" dependency, again it gives me error:
Error: Dependency is not satisfiable: fontconfig-config (= 2.11.0-0ubuntu4.2)
At last when I am trying to install "fontconfig-config" dependency, again it gives me error:
Error: Breaks existing package 'libfontconfig1' dependency fontconfig-config (= 2.8.0-3ubuntu9.2)

try this :
sudo apt-get purge libfontconfig1
then:
sudo apt-get install font

Related

How can I reinstall apt? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 1 year ago.
Improve this question
Hi!
I deleted by mistake, the command apt and apt-get...
My OS: Ubuntu 16.04 TLS
Error:
-bash: /usr/bin/apt: No such file or directory
-bash: /usr/bin/apt-get: No such file or directory
How can I reinstall APT command?
check out the packages.ubuntu.com page and look for the apt package, there you can download the binary .deb file depending on your processor architecture...
But consider that, the deb files have some dependencies... you have to install them too, for listing the package dependencies, use the dpkg, eg:
dpkg -I apt-armhf-blahblah.deb
if you deleted the apt package by itself, take a look at its log file in /var/log/apt/history.log, you can discover the name of packages that you removed.
HINT 1: since the DPKG can't automatically install the dependencies, you have to install them one by one!
HINT 2: that's recommended to remove your current OS and install the latest version because this version will not receive any maintenance update anymore.

installing pycryptodome on Linux VM [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
Im got ubuntu 18.04.4 VM and trying to install pycryptodome via
pip3 install pycryptodome
The error I get is
THESE PACKAGES DO NOT MATCH THE HASHES FROM THE REQUIREMENTS FILE. If you have updated the package versions, please update the hashes. Otherwise, examine the package contents carefully; someone may have tampered with them.
pycryptodome
Ive tried clearing cache and upgrading pip but nothing has worked so far. What can I do to get rid of this
This problem happens when there is an issue with the downloaded package. The following command downloads a new one and installs it.
pip3 install pycryptodome --no-cache-dir

How to install dpkg file on debian linux? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
I am new to Linux and I want to install .Deb software package in Linux. Let say I want to install chromex64.deb, how to install it? can anyone explain it?
You could try running dpkg -i chromex64.deb
If an error occurs saying that some dependencies are missing, install them using apt-get install
You can install by using dpkg -i command.
Navigate to download directory and open the terminal.
Run the following code:
sudo dpkg -i *.deb
If there is more deb file, specify the file name in place of *
If you find missing dependencies, you can try
sudo apt-get update --fix-missing

I can't install libopenblas via yum on Centos 7 [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 5 years ago.
Improve this question
Hello Stackoverflow user,
I want to compile NWChem program on CentOS 7 and it requires an OpenBlas library. I have tried to install the OpenBlas via yum installer using command: yum -y install libopenblas or yum -y install libopenblas-devel.
Unluckily, it did not work and the error message is like there is no the openblas library in the repository.
Can anyone suggest me how to fix this issue?
Thanks a lot.
I am not 100% sure, but the correct package name should be openblas-devel.x86_64. Try the command yum install openblas-devel.x86_64 -y.

sudo: apt-get: command not found linux server [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 6 years ago.
Improve this question
I am using a Linux server andtrying to install the jdk package. But when i try sudo apt , I get the following error:
sudo: apt-get: command not found
The version of Linux is:
3.10.0-229.el7.x86_64 GNU/Linux
Can't figure out whats wrong
It seems that you have CentOS on your server based on Linux version. You can try Yum instead. For example:
sudo yum install ...

Resources