I am trying to install Python or anaconda on Sun solaris 11.4 system with Sparc architecture. Somebody has idea on the python or anaconda installer compatible to same
1 Answers
The following info is from Python.org
Python for Solaris
You can purchase ActivePython (commercial and community versions, including scientific computing modules, not open source), or build from source if you have a C compiler.
UNIX Packages has a variety of Python versions for a variety of Solaris versions. These use the standard Sun pkgadd.
As far as I know, Anaconda supports ONLY Windows, MacOs and Linux.
Above the facts, now the opinions...
In my experience building Python from source is easy, but when you want to pull in the scientific stack (Numpy, Matplotlib, Scipy, Cartopy etc) building from source becomes more complicated (I don't know if you can
pip
these libraries pre-built for Solaris).I've learnt, reading this and this that Solaris indeed comes with Python, but this pre-installed Python issue is meant, essentially, for use by a large number of important OS components and you'd better leave it alone.
If, for your development, you can use the system's Python as is, no other modules installed, no newer versions etc, then you're OK
On the other hand, the documents linked above details the practices Oracle suggests to install additional packages w/o disrupting the system's Python.
Be careful...

- 22,939
- 8
- 54
- 85
-
I have Solaris 11.4/SPARC, which is used for Oracle database & RAC. These have their own set of packages that must be installed. Python 3.7 cannot be installed on top of this with 'pkgadd', as it has pre-requisites that conflict with already installed software. – CrankyElderGod Jan 25 '23 at 19:32