7

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.

4
  • 1
    Does this build idle? Commented Nov 3, 2013 at 15:56
  • @LutzHorn PKGBUILD only has ln -sf idle3 "{pkgdir}"/usr/bin/idle. Maybe build it by default? Commented Nov 3, 2013 at 15:58
  • 9
    IDLE is a set of Python scripts which occupy less than 1MB. 'Tis probably easiest to remove them after install than tweak autoconf output (or just not run idle, unless you are on a very disk-limited machine). Commented Nov 3, 2013 at 16:05
  • @jasonz You may want to delete your question. Commented Nov 9, 2013 at 17:07

1 Answer 1

1

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.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.