Lines Matching full:python
9 Python subtitle
12 LLDB has a powerful scripting interface which is accessible through Python.
13 Python is available either from within LLDB through a (interactive) script
14 interpreter, or as a Python module which you can import from the Python
17 To make this possible, LLDB links against the Python shared library. Linking
18 against Python comes with some constraints to be aware of.
20 1. It is not possible to build and link LLDB against a Python 3 library and
21 use it from Python 2 and vice versa.
24 Python and use it through an interpreter coming from another distribution.
25 For example, on macOS, if you build and link against Python from
26 python.org, you cannot import the lldb module from the Python interpreter
29 3. To use third party Python packages from inside LLDB, you need to install
30 them using a utility (such as ``pip``) from the same Python distribution as
40 install Python, often unknowingly as a dependency pulled in by Homebrew or argument
45 To be sure you use the Python that matches with the lldb in Xcode use ``xcrun``
61 The same is true for Python 2. Although Python 2 comes with the operating
67 $ xcrun python
68 $ /usr/bin/python
70 Keep in mind that Python 2 is deprecated and no longer maintained. Future
71 versions of macOS will not include Python 2.7.