2

我最近开始在我的工作站上使用 Centos 8 并且没有xselxclip

是有什么问题还是故意的,xclip不可用?

这是的输出dnf repolist,也许我错过了一些必备的回购?

repo id                                                                             repo name                                                                                                               status
AppStream                                                                           CentOS-8 - AppStream                                                                                                    5.089
Atom                                                                                Atom Editor                                                                                                               142
BaseOS                                                                              CentOS-8 - Base                                                                                                         2.843
amdgpu-pro-local                                                                    AMD amdgpu Pro local repository                                                                                            70
docker-ce-stable                                                                    Docker CE Stable - x86_64                                                                                                  57
*epel                                                                               Extra Packages for Enterprise Linux 8 - x86_64                                                                          3.643
extras                                                                              CentOS-8 - Extras                                                                                                           3
virtualbox                                                                          Oracle Linux / RHEL / CentOS-8 / x86_64 - VirtualBox                                                                        4

4

3 回答 3

2

你可以自己编译:

# Obtain the sourcecode
git clone https://github.com/astrand/xclip.git
./bootstrap
./configure
make
make install

验证是否已安装:

man xclip
于 2019-12-17T21:28:23.410 回答
1

在 Centos 8 中运行 pyperclip.copy("Hello") 时,我发现 centos 8 没有 xclip,所以包给了我错误。我搜索了所有软件包,但 Centos8 的存储库没有任何类似的软件包。

我通过以下步骤解决了这个问题。

安装 libXmu 和 X11 开发库

sudo yum install libXmu-devel libX11-devel

获取源代码

git 克隆https://github.com/astrand/xclip.git

./bootstrap

。/配置

制作

须藤使安装

然后测试安装 man xclip

现在我可以在 python 中使用 pyperclip 来使用剪贴板。

于 2020-02-08T10:14:09.583 回答
0

首先在 CentOS 8 上启用 EPEL (Extra Packages for Enterprise Linux) repo 以安装额外的软件包,例如 xclip。

第 1 步:安装 epel 存储库

# yum install epel-release.noarch
             or
# dnf install epel-release

第 2 步:从 EPEL 存储库安装 xclip

# dnf install xclip
Last metadata expiration check: 0:06:09 ago on Mon 07 Feb 2022 10:39:39 AM IST.
Dependencies resolved.
=============================================================================================================================================================
 Package                             Architecture                         Version                                   Repository                          Size
=============================================================================================================================================================
Installing:
 xclip                               x86_64                               0.13-8.el8                                epel                                35 k

Transaction Summary
=============================================================================================================================================================
Install  1 Package
于 2022-02-07T05:16:59.010 回答