比如源码安装python3,sqlite3模块没有装上,提示缺少_sqlite3.so,需要安装sqlite3-devel这个包。这种以xxx-dev(el)方式的包,其作用是什么?
不同版本的rpm包,能通用吗?比如SuSE 10和SuSE的能通用吗?
迷茫2017-04-17 17:13:05
Provides header files (.h) and libraries (.so), which are needed for secondary development.
For example,
sqlite3. After installation, you can operate the sqlite3 database in the terminal.
sqlite3-dev, after installation, you can use c/c++ language to operate sqlite3.