Unknown screen output of manually installed Python 2.7

后端 未结 1 981
暖寄归人
暖寄归人 2020-12-19 04:24

I installed Python 2.7 today using:

./configure --prefix=/home/zhanwu/local --enable-shared --enable-profiling --with-pydebug
make install

相关标签:
1条回答
  • 2020-12-19 05:14

    You get these because you configured the build with --with-pydebug. They denote the number of references Python is currently keeping track of. To get rid of them, configure without --with-pydebug.

    0 讨论(0)
提交回复
热议问题