I'm trying to install Python (just assumed use the latest version, 3.5.1) on Red Hat Linux. Somehow the standard library is not getting installed, I also can't use pip. I'm pretty new to Linux, so it's entirely possible I'm making a really stupid mistake.
My installation has been (what I think is standard)
./configure
make
make install
which runs fine. Then I was using a symbolic link to have 'python' point to the new install, something similar to
ln -sf /usr/local/bin/python3.5 /usr/bin/python
which seemed to work, because entering
python --version
returned 3.5.1 correctly.
So what am I doing wrong? Why does my install seem to lack the standard library?
To clarify the reason that I suspect that the standard library isn't installed, what happened is that I tried to use pip and discovered it wasn't installed, so attempting to install it using the get-pip.py file I received a message that zlib not available.