Issue
I have managed to find Unix OS source and I intend to study it in terms of automation but the problem is that installing python on AT&T Systems Unix V seems more than impossible. Is there any way to download python on Unix such that it works just as it would on a MS Windows, MacOS or Linux?
I tried automating Unix with ShellScript but it seems that ShellScript does not have the ease and scope of Python. I am trying to study the working of AT&T Systems Unix V and I installed it on Virtual Box.
Solution
Read this article from python documentation, it is about installing Python On Unix based Systems. The following command will work on systems like Unix Or BSD
pkg_add -r python
pkg_add ftp://ftp.openbsd.org/pub/OpenBSD/4.2/packages/<insert your architecture here>/python-<version>.tgz
Answered By - Hashir Butt Answer Checked By - Terry (WPSolving Volunteer)