Установка Mercurial 1.5.4 на Ubuntu 10.04


9

Я скачал исходный код и попытался установить с помощью инструкции README:

sudo make install

но я получаю следующие ошибки:

python setup.py  build
running build
running build_mo
warning: hgbuildmo: could not find msgfmt executable, no translations will be built
running build_py
running build_ext
building 'mercurial.base85' extension
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -I/usr/include/python2.6 -c mercurial/base85.c -o build/temp.linux-x86_64-2.6/mercurial/base85.o
mercurial/base85.c:12:20: error: Python.h: No such file or directory
mercurial/base85.c: In function ‘b85prep’:
mercurial/base85.c:23: warning: implicit declaration of function ‘memset’
mercurial/base85.c:23: warning: incompatible implicit declaration of built-in function ‘memset’
mercurial/base85.c: At top level:
mercurial/base85.c:28: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
mercurial/base85.c:76: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
mercurial/base85.c:147: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘methods’
mercurial/base85.c:156: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘initbase85’
error: command 'gcc' failed with exit status 1
make: *** [build] Error 1

Имейте в виду, что я знаю, что могу установить, используя:

sudo apt-get install mercurial

но это дает мне старую версию (1.4.3-1).

Итак, что происходит?

Ответы:


4

С линии:

mercurial/base85.c:12:20: error: Python.h: No such file or directory

Похоже, у вас нет инструментов разработки для Python. Решить с помощью:

sudo apt-get install python-dev

16

Вам не нужно собирать Mercurial вручную, чтобы получить новейшую версию Ubuntu. Существует хранилище PPA по адресу https://launchpad.net/~mercurial-ppa/+archive/releases.

sudo add-apt-repository ppa:mercurial-ppa/releases
sudo apt-get update
sudo apt-get install mercurial

Кстати. Существует также PPA для TortoiseHG, который предлагает хорошую интеграцию функциональности Mercurial в Nautilus: https://launchpad.net/~tortoisehg-ppa/+archive/releases

sudo add-apt-repository ppa:tortoisehg-ppa/releases
sudo apt-get update
sudo apt-get install tortoisehg-nautilus

1

Вам нужно установить gettext для msgfmt:

apt-get install gettext
Используя наш сайт, вы подтверждаете, что прочитали и поняли нашу Политику в отношении файлов cookie и Политику конфиденциальности.
Licensed under cc by-sa 3.0 with attribution required.