Changes between Version 17 and Version 18 of FAQ


Ignore:
Timestamp:
Sep 8, 2007, 7:12:27 AM (17 years ago)
Author:
sfiera@…
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FAQ

    v17 v18  
    106106=== How do I get readline support for DarwinPort's Python? ===
    107107
    108 For python24, install the py-readline port!
     108If you're using python24, install the py-readline port. If you're using python25, install py25-readline. Depending on your setup, you may need to create a file called ~/.pythonrc.py with the following in it:
     109{{{
     110import readline
     111}}}
     112
     113=== Why can't I `import foo` in Python 2.5? ===
     114
     115A number of "standard python modules" are built separately from the python25 port, including:
     116 * zlib
     117 * _hashlib
     118 * _ssl
     119 * _bsddb
     120 * _sqlite3
     121 * _tkinter
     122 * bz2
     123 * gdbm
     124 * readline
     125 * _curses
     126 * _curses_panel
     127
     128Some of the modules are available as separate py25-xxx ports, for example, py25-hashlib. For further information about readline support in python25, see the above FAQ question.
    109129
    110130=== Will MacPorts link to system libraries rather than its own? ===