This is the first time I am installing python, as I am using an instalation of Oracle Linux 6 and it seemed not present in the repository when I tried the simpler ways of doing it. I downloaded the source of version Python 3.9 and am trying to compile it, but tests seem to be running for a long, looooong time.
Is that normal? Can I interrupt it? How many time can they go on?
5:19:13 load avg: 0.00 running: test_socket (5 hour 5 min), test_logging (5 hour 14 min)
5:19:43 load avg: 0.00 running: test_socket (5 hour 5 min), test_logging (5 hour 14 min)
5:20:13 load avg: 0.00 running: test_socket (5 hour 6 min), test_logging (5 hour 15 min)
5:20:43 load avg: 0.00 running: test_socket (5 hour 6 min), test_logging (5 hour 15 min)
5:21:13 load avg: 0.00 running: test_socket (5 hour 7 min), test_logging (5 hour 16 min)
5:21:43 load avg: 0.00 running: test_socket (5 hour 7 min), test_logging (5 hour 16 min)
5:22:13 load avg: 0.00 running: test_socket (5 hour 8 min), test_logging (5 hour 17 min)
5:22:43 load avg: 0.00 running: test_socket (5 hour 8 min), test_logging (5 hour 17 min)
5:23:13 load avg: 0.00 running: test_socket (5 hour 9 min), test_logging (5 hour 18 min)
5:23:43 load avg: 0.00 running: test_socket (5 hour 9 min), test_logging (5 hour 18 min)
I am runing this command I found in this thread (How to install python3-dev in Oracle Linux?):
wget https://www.python.org/ftp/python/3.9.7/Python-3.9.7.tgz \
&& tar -xf Python-3.9.7.tgz \
&& cd Python-3.9.7 \
&& ./configure --enable-optimizations \
&& make \
&& make test
&& make install
source https://stackoverflow.com/questions/69367428/python-instalation-tests-running-forever
Comments
Post a Comment