Hi,
I am trying to build from source using the instructions
here.
I managed to produce a toolchain, but it only has a python2.7 version of the lldb module, whereas I'd like to use python3.
Any tips on how to resolve this?
I found that there's a CMake invocation for lldb, and it seems the tensorflow toolchain build script sets `-DLLDB_ENABLE_PYTHON=ON`. I'm not sure what controls which version of the python package gets produced.
I'm on Ubuntu 20.04:
$ python --version
Python 2.7.18rc1
$ python3 --version
Python 3.8.2
I tried invoking the build script a venv such that "python" resolved to python3, but that broke the build script early on with:
```
CMake Error at /usr/share/cmake-3.16/Modules/FindPackageHandleStandardArgs.cmake:146 (message): Could NOT find Python2 (missing: Python2_EXECUTABLE Interpreter)
```
BTW, the reason I'm building from source is to build tensorflow with a CUDA compute capability that matches my GPU (6.1). If there's an easier way to do this (e.g. just build tensorflow without rebuilding the whole toolchain?) please let me know.
Thanks