python installation in solaris machine

Hi, Im newb to python. I tried to install Python in my sun Solaris machine(SPARC). The following steps I did 1. Downloaded the python source from python.org download page. 2. unzipped the archival. 3. run the configure 4. then I tried to run the 'make' command, Im getting the error message saying that 'fatal error' and come out from installation. Error is given below (Please look at the attached file for details.) /********************************************************************************************************************************* gcc -DNDEBUG -g -O3 -Wall -Wstrict-prototypes -I. -I./Include -DHAVE_CONFIG_H -c ./Modules/symtablemodule.c -o Modules/symtablemodule.o gcc -DNDEBUG -g -O3 -Wall -Wstrict-prototypes -I. -I./Include -DHAVE_CONFIG_H -c ./Modules/xxsubtype.c -o Modules/xxsubtype.o if test -f buildno; then \ expr `cat buildno` + 1 >buildno1; \ mv -f buildno1 buildno; \ else echo 1 >buildno; fi gcc -c -DNDEBUG -g -O3 -Wall -Wstrict-prototypes -I. -I./Include -DHAVE_CONFIG_H -DBUILD=`cat buildno` -o Modules/getbuildinfo.o ./Modules/getbuildinfo.c rm -f libpython2.2.a ar cr libpython2.2.a Modules/getbuildinfo.o sh: ar: not found *** Error code 1 make: Fatal error: Command failed for target `libpython2.2.a' /*********************************************************************************************************************************** Any one can help me in that ?? Please look at the attached file for details. Thanks in advance Regards V.Selvam

--On Dienstag, 2. März 2004 18:10 Uhr +0530 "V.Selvam" <vse@srasys.co.in> wrote:
Hi, Im newb to python. I tried to install Python in my sun Solaris
Please address your problem to the python@python.org list. This list is not for general Python questions.
sh: ar: not found *** Error code 1
The error message says it all. You system is either badly installed or your PATH is broken (go and search for 'ar' command which is needed to build the corresponding library). -aj

--On Dienstag, 2. März 2004 18:10 Uhr +0530 "V.Selvam" <vse@srasys.co.in> wrote:
Hi, Im newb to python. I tried to install Python in my sun Solaris
Please address your problem to the python@python.org list. This list is not for general Python questions.
sh: ar: not found *** Error code 1
The error message says it all. You system is either badly installed or your PATH is broken (go and search for 'ar' command which is needed to build the corresponding library). -aj

On Tue, Mar 02, 2004, Andreas Jung wrote:
--On Dienstag, 2. März 2004 18:10 Uhr +0530 "V.Selvam" <vse@srasys.co.in> wrote:
Im newb to python. I tried to install Python in my sun Solaris
Please address your problem to the python@python.org list. This list is not for general Python questions.
Close, but no cigar. The correct address is python-list@python.org, and is often better accessed as the newsgroup comp.lang.python. -- Aahz (aahz@pythoncraft.com) <*> http://www.pythoncraft.com/ "Do not taunt happy fun for loops. Do not change lists you are looping over." --Remco Gerlich, comp.lang.python

VS> ar cr libpython2.2.a Modules/getbuildinfo.o VS> sh: ar: not found As others have pointed out, c.l.py (aka python-list@python.org) is the correct place for this sort of question. You need /usr/ccs/bin in your PATH. Skip
participants (5)
-
Aahz
-
Andreas Jung
-
Andreas Jung
-
Skip Montanaro
-
V.Selvam