我正在使用 Ubuntu 20.04,我正在考虑尝试使用窗口管理器进行编程和日常使用。我实际上不是计算机专家,但我开始学习一些编程语言(尤其是 Python)和一些数据分析软件(如用于统计的 R)的基础知识,所以我喜欢拥有我的工作区和窗口的想法最佳组织。我认为对我来说最好的选择是 Qtile:使用 Python 编程,我可以提高我的编程技能,同时配置 WM。但是,似乎 Qtile 仍然没有出现在焦点存储库中,所以我不得不按照网站 (qtile.org) 的指南从源代码安装它。但是,在此过程结束时,当我尝试运行设置时,我仍然无法在登录窗口中看到 Qtile 选项。
mattia@HAL9000:~/qtile$ sudo python setup.py
Failed to find pulseaudio headers. PulseVolume widget will be unavailable
/usr/lib/python2.7/dist-packages/cffi/cparser.py:153: UserWarning: String literal found in cdef() or type source. String literals are ignored here, but you should remove them anyway because some character sequences confuse pre-parsing.
warnings.warn("String literal found in cdef() or type source. "
/usr/lib/python2.7/dist-packages/cffi/cparser.py:164: UserWarning: Global variable 'CAIRO_TAG_DEST' in cdef(): for consistency with C it should have a storage class specifier (usually 'extern')
"(usually 'extern')" % (decl.name,))
/usr/lib/python2.7/dist-packages/cffi/cparser.py:164: UserWarning: Global variable 'CAIRO_TAG_LINK' in cdef(): for consistency with C it should have a storage class specifier (usually 'extern')
"(usually 'extern')" % (decl.name,))
usage: setup.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
or: setup.py --help [cmd1 cmd2 ...]
or: setup.py --help-commands
or: setup.py cmd --help
error: no commands supplied
我一个字都听不懂,我什至不确定我是否应该运行该文件,但我认为我的问题可能与我的默认 python 版本仍然是 2.7 的事实有关。最终结果是我无法使用 Qtile。你认为这可能是什么原因?如果它真的与 python2.7 相关,我怎样才能更新我的 python 版本而不会使我的一半应用程序崩溃?(我是根据过去的经验这么说的,但我不知道现在情况是否发生了变化,并且应用程序应该可以使用不同的 python 版本)。我很确定我错过了一些非常基本和简单的东西......