How to solve the problem that the software package does not exist when installing software in Linux

How to solve the problem that the software package does not exist when installing software in Linux

When the software package does not exist, it may be that the software source of the installed software is not installed. I used Cent OS. When I installed w3m, this problem occurred. The solution is: first install the software source (epel-release), then update the system package, and finally perform the software installation operation, and it will be successful.

Take the installation of w3m as an example:

1. Install w3m software source: epel-release

yum install epel-release

//If you are not a system administrator, you need to add the sudo command in front, because the installation requires administrator privileges

2. After successful installation, update the system package

(If you are not a system administrator, you need to add the sudo command in front, because the installation requires administrator privileges)

yum -y update

3. Install w3m again

(//If you are not a system administrator, you need to add the sudo command in front, because the installation requires administrator privileges)

yum install w3m

Installation successful!

The above article on how to solve the problem when the software package does not exist when installing software in Linux is all the content that the editor shares with you. I hope it can give you a reference, and I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • Solution to Linux forced installation of rpm package
  • Solution to Linux forced installation of rpm package
  • Detailed explanation of how to upgrade software package versions under Linux
  • Detailed explanation of several methods of installing software in Linux
  • Detailed explanation of installation and use of software packages under LINUX

<<:  Vue Element front-end application development: Use of API Store View in Vuex

>>:  In-depth explanation of MySQL learning engine, explain and permissions

Blog    

Recommend

Solution to MySQLSyntaxErrorException when connecting to MySQL using bitronix

Solution to MySQLSyntaxErrorException when connec...

How to express relative paths in Linux

For example, if your current path is /var/log and...

MySQL replication advantages and principles explained in detail

Replication is to transfer the DDL and DML operat...

Deep understanding of JavaScript syntax and code structure

Table of contents Overview Functionality and read...

Mysql dynamically updates the database script example explanation

The specific upgrade script is as follows: Dynami...

How to run commands on a remote Linux system via SSH

Sometimes we may need to run some commands on a r...

jQuery implements simple pop-up window effect

This article shares the specific code of jQuery t...

Simple tips to increase web page loading speed

The loading speed of a web page is an important in...

Document Object Model (DOM) in JavaScript

Table of contents 1. What is DOM 2. Select elemen...

The most complete 50 Mysql database query exercises

This database query statement is one of 50 databa...

Vue implements left and right sliding effect example code

Preface The effect problems used in personal actu...

How to configure nginx to return text or json

Sometimes when requesting certain interfaces, you...

Introduction to network drivers for Linux devices

Wired network: Ethernet Wireless network: 4G, wif...

How to configure the pdflatex environment in docker

Technical Background Latex is an indispensable to...