我最近开始在工作站上使用Centos 8,但没有xsel
或xclip
是不是有问题或故意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
答案 0 :(得分:1)
在Centos 8中,运行pyperclip.copy(“ Hello”)时,我发现centos 8没有xclip,因此该软件包给了我错误。 我已经搜索了所有软件包,但Centos8的存储库中没有任何类似的软件包。
我将通过以下步骤解决此问题。
sudo yum安装libXmu-devel libX11-devel
git clone https://github.com/astrand/xclip.git
./ bootstrap
./ configure
制作
sudo make install
然后测试安装 男人xclip
现在我可以在python中使用pyperclip来使用剪贴板。
答案 1 :(得分:0)
您可以自己编译:
# Obtain the sourcecode
git clone https://github.com/astrand/xclip.git
./bootstrap
./configure
make
make install
验证已安装:
man xclip