标签: python linux installation
我按照以下步骤编译了python 2.7.11:
tar -xf python.tar.xz ./configure make
编译后,我发现结果中没有libpython2.7.so,这意味着这不是'dev'版本。
那么,我怎样才能制作.so文件并正确安装它们(不要覆盖系统的默认python)?
答案 0 :(得分:8)
你需要:
./configure --with-shared
查看./configure所提供的所有内容:
./configure
./configure --help