Message255102
I'm unable to install Python 3.6, "make install" doesn't copy .py files because the bininstall target failed. It failed because /opt/py36/lib/pkgconfig doesn't exist.
Try:
---
export MAKEFLAGS=-j9
rm -rf /opt/py36
./configure --prefix=/opt/py36
make
make install # you may need 'sudo make install'
---
Attached patch fixes the Makefile, but I don't know if my change is correct. |
|
Date |
User |
Action |
Args |
2015-11-22 14:31:42 | vstinner | set | recipients:
+ vstinner, doko, Arfrever |
2015-11-22 14:31:42 | vstinner | set | messageid: <1448202702.88.0.964294450431.issue25696@psf.upfronthosting.co.za> |
2015-11-22 14:31:42 | vstinner | link | issue25696 messages |
2015-11-22 14:31:42 | vstinner | create | |
|