0

我擅长在 Linux 环境中安装软件包,但对 Solaris OS 来说是新手。我需要将 Python - libxml2 包安装到我的项目中。以下命令是否也适用于 Solaris 服务器进行安装?

sudo apt-get install libxml2 libxml2-dev

我试过谷歌搜索,不幸的是无法获得。

4

2 回答 2

1

What you proposed is specific to Debian-based Linux distributions.

IMHO, the fastest way would be to download the libxml2 source code in order to compile and install it yourself.

于 2013-07-19T14:03:05.550 回答
1

如果您运行的是 Solaris 11,那么pkg install libxml2具有足够的权限将是正确的调用。确定正确的包名称就像pkg search使用合理的查询一样简单(假设您仍然连接到安装系统的存储库)。

如果您运行的是 Solaris 10 或更早版本,那么您将需要原始安装介质,以及已发布的任何补丁程序 intersect SUNWlxml。但坦率地说,那时从源代码安装可能更容易。

于 2017-08-22T21:25:01.540 回答