我目前在Kali上,在我写了“pyenvinstallpython3.6.9”之后,它给了我这样的信息:误差,有人能帮忙吗?
BUILD FAILED (Kali 2022.2 using python-build 2.3.3) Inspect or clean up the working tree at /tmp/python-build.20220804174325.3014
Results logged to /tmp/python-build.20220804174325.3014.log
Last 10 log lines:
if test "xupgrade" != "xno" ; then \
case upgrade in \
upgrade) ensurepip="--upgrade" ;; \
install|*) ensurepip="" ;; \
esac; \
./python -E -m ensurepip \
$ensurepip --root=/ ; \
fi
Segmentation fault (core dumped)
make: *** [Makefile:1064: install] Error 139```发布于 2022-11-10 17:17:48
试试这个:
sudo apt install gcc-10
CC=gcc-10 pyenv install 3.6.9https://stackoverflow.com/questions/73239153
复制相似问题