Results 1 to 4 of 4
I'M trying to install python on Fedora 13, 32 bit OS, 64 bit computer.
Here are the instructions.
On Unix, Linux, BSD, OSX, and Cygwin:
./congigure
make
make test
sudo ...
- 07-04-2011 #1Just Joined!
- Join Date
- Dec 2010
- Posts
- 66
installing python
I'M trying to install python on Fedora 13, 32 bit OS, 64 bit computer.
Here are the instructions.
On Unix, Linux, BSD, OSX, and Cygwin:
./congigure
make
make test
sudo make install
I cd'd into the directory and typed ./configure
Here are the errors I'M getting
Code:$ cd /home/garrett/Desktop/Python-3.2/./configure bash: cd: /home/garrett/Desktop/Python-3.2/./configure: Not a directory [garrett@FedoraDesktop ~]$ cd /home/garrett/Desktop/Python-3.2 [garrett@FedoraDesktop Python-3.2]$ ./configure checking for --enable-universalsdk... no checking for --with-universal-archs... 32-bit checking MACHDEP... linux2 checking machine type as reported by uname -m... i686 checking for --without-gcc... no checking for gcc... no checking for cc... no checking for cl.exe... no configure: error: in `/home/garrett/Desktop/Python-3.2': configure: error: no acceptable C compiler found in $PATH See `config.log' for more details
Code:$ ./configure checking for --enable-universalsdk... no checking for --with-universal-archs... 32-bit checking MACHDEP... linux2 checking machine type as reported by uname -m... i686 checking for --without-gcc... no checking for gcc... no checking for cc... no checking for cl.exe... no configure: error: in `/home/garrett/Desktop/temp/Python-3.2': configure: error: no acceptable C compiler found in $PATH See `config.log' for more details
- 07-07-2011 #2Just Joined!
- Join Date
- Jun 2010
- Location
- CA
- Posts
- 20
you don't have gcc installed
yum install gcc then install python
or just
yum install python
- 07-08-2011 #3Just Joined!
- Join Date
- Dec 2010
- Posts
- 66
Thanks. The only problem is my Fedora desktop can not connect to the internet at the moment. So I have to download file onto my laptop and transfer them to the desktop to be installed.
- 07-09-2011 #4Just Joined!
- Join Date
- Jun 2010
- Location
- CA
- Posts
- 20
ok. you can still run
and you'll get a list of all required files to execute pythonCode:ldd /path/to/Python-3.2


Reply With Quote