重新编译Python
程序员文章站
2023-12-30 17:05:10
...
原文出自Stack Overflow:
https://*.com/questions/20126475/importerror-no-module-named-sqlite3-in-python3-3
在Linux中配置python环境时遇到些稀碎稀碎的问题,google后好多解决办法都需要重新编译python
以python3.5为例,重新编译方式如下:
tar Jxvf Python-3.5.0.tar.xz
cd Python-3.5.0
./configure --prefix=/usr/local/python3
make && make install