การติดตั้ง 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

ดูเหมือนว่าคุณไม่มีเครื่องมือในการพัฒนาสำหรับไพ ธ อน แก้ปัญหาด้วย:

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

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.