在 Ubuntu 上从源文件安装 Mercurial

发布于 2024-10-26 04:19:20 字数 148 浏览 2 评论 0原文

我是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

活雷疯 2024-11-02 04:19:20

您可以使用 pip 从源代码安装 Mercurial(apt-get install pip 如果您还没有它):

pip install mercurial

这通常会将其安装到 /usr/ local/bin/hg,而不是默认的 /usr/bin/hg

如果您想安装特定版本,您可以随时将 pip 指向 源版本,例如 https:// /www.mercurial-scm.org/release/mercurial-1.8.1.tar.gz

最后,如果您确实想要从源代码安装,请下载这些源代码 tarball 之一,将其解压缩,然后运行

cd mercurial-1.8.1
python setup.py install

You can install Mercurial from source using pip (apt-get install pip if you don't already have it):

pip install mercurial

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

cd mercurial-1.8.1
python setup.py install
冷…雨湿花 2024-11-02 04:19:20

是的,确实如此。它称为 mercurial。您可以执行以下操作:

sudo apt-get install mercurial

或使用图形包管理器。

如果您需要更高版本,可以使用 PPA。如果您愿意,您当然可以从源代码构建它。最简单的方法是使用 apt-get source,然后构建包。如果您想从上游源代码构建它,那也是可能的。

Yes it does. It's called mercurial. You can do:

sudo apt-get install mercurial

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.

聊慰 2024-11-02 04:19:20

在 Ubuntu/Debian 上:sudo apt-get install Mercurial

On Ubuntu/Debian: sudo apt-get install mercurial

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文