在 Ubuntu 上从源文件安装 Mercurial
我是 Ubuntu 和 Mercurial 的新手,所以我想看看是否有人有从源代码安装 Mercurial 的经验,因为它没有特定于 Ubuntu 的发行版。
从源代码安装 Mercurial 的最佳方法是什么?有什么想法吗? :)
谢谢, 亚历克斯
I am new to Ubuntu and Mercurial, so I wanted to see if anyone has experience installing Mercurial from source since it does not have an Ubuntu-specific distribution.
What is the best way for me to install Mercurial from source? Any ideas? :)
Thanks,
Alex
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用
pip
从源代码安装 Mercurial(apt-get install pip
如果您还没有它):这通常会将其安装到
/usr/ local/bin/hg
,而不是默认的/usr/bin/hg
。如果您想安装特定版本,您可以随时将
pip
指向 源版本,例如 https:// /www.mercurial-scm.org/release/mercurial-1.8.1.tar.gz。最后,如果您确实想要从源代码安装,请下载这些源代码 tarball 之一,将其解压缩,然后运行
You can install Mercurial from source using
pip
(apt-get install pip
if you don't already have it):This will usually install it to
/usr/local/bin/hg
, instead of the default/usr/bin/hg
.If you want to install a specific version, you can always point
pip
at one of the source releases, such as https://www.mercurial-scm.org/release/mercurial-1.8.1.tar.gz.Lastly, if you really want to install from source, download one of those source tarballs, unzip it, and run
是的,确实如此。它称为 mercurial。您可以执行以下操作:
或使用图形包管理器。
如果您需要更高版本,可以使用 PPA。如果您愿意,您当然可以从源代码构建它。最简单的方法是使用 apt-get source,然后构建包。如果您想从上游源代码构建它,那也是可能的。
Yes it does. It's called mercurial. You can do:
or use the graphical package manager.
If you need a later version, you can use the PPA. You certainly can build it from source if you want. The easiest way is to use
apt-get source
, then build the package. If you want to build it from upstream source, that's possible too.在 Ubuntu/Debian 上:
sudo apt-get install Mercurial
On Ubuntu/Debian:
sudo apt-get install mercurial