Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install python without idle?

I'm using Archlinux and I find I don't need Idle when I'm coding Python.

Here is part of the default PKGBUILD file:

    ./configure --prefix=/usr \
                --enable-shared \
                --with-threads \
                --with-computed-gotos \
                --enable-ipv6 \
                --with-valgrind \
                --with-system-expat \
                --with-dbmliborder=gdbm:ndbm \
                --with-system-ffi

     ln -sf idle3     "${pkgdir}"/usr/bin/idle

Can I build python without installing Idle?
Thanks in advance.

like image 513
jasonz Avatar asked Nov 03 '13 15:11

jasonz


1 Answers

In the end, it's not possible to install Python without Idle. There are no config switches or other methods to exclude it. Idle can be an extremely valuable tool. I would risk saying that although you don't see a need for it today, it may come in handy in the future.

like image 159
slurry Avatar answered Sep 28 '22 07:09

slurry