In jenkins
output I am getting the following errors. Is this a problem or can it be silenced?
profiling:/opt/Python-3.6.1/Python/structmember.gc
This happened to me when I did ./configure --enable-optimizations
. If you remove --enable-optimizations
, compile and install it again - these messages are not shown anymore.
To sum things up, here's an example with a fresh version of Python:
wget https://www.python.org/ftp/python/3.6.3/Python-3.6.3.tgz
tar xvf Python-3.6.3.tgz
cd Python-3.6.3
./configure
make
sudo make altinstall
python3.6