System Requirements
Supported Operating Systems
Windows
- Microsoft Windows 2000 ( x64, x86)
- Microsoft Windows XP ( x64, x86)
- Microsoft Windows Server 2003 ( x64, x86)
- Microsoft Windows Server 2008 ( x64, x86)
- Microsoft Windows Server 2012 ( x64, x86)
- Microsoft Windows Vista ( x64, x86)
- Microsoft Windows 7 ( x64, x86)
- Microsoft Windows 8 ( x64, x86)
- Microsoft Windows 10 ( x64, x86)
Linux
- Ubuntu
- OpenSUSE
- CentOS
- and others
System Requirements for Target Linux Platform
-
GCC-6 runtime libraries (or later).
-
Dependencies of .NET Core Runtime. Installing .NET Core Runtime itself is NOT required.
-
For Python 3.5-3.7: The
pymalloc
build of Python is needed. The--with-pymalloc
Python build option is enabled by default. Typically, thepymalloc
build of Python is marked withm
suffix in the filename. -
libpython
shared Python library. The--enable-shared
Python build option is disabled by default, some Python distributions do not contain thelibpython
shared library. For some linux platforms, thelibpython
shared library can be installed using the package manager, for example:sudo apt-get install libpython3.7
. The common issue is thatlibpython
library is installed in a different location than the standard system location for shared libraries. The issue can be fixed by using the Python build options to set alternate library paths when compiling Python, or fixed by creating a symbolic link to thelibpython
library file in the system standard location for shared libraries. Typically, thelibpython
shared library file name islibpythonX.Ym.so.1.0
for Python 3.5-3.7, orlibpythonX.Y.so.1.0
for Python 3.8 or later (for example: libpython3.7m.so.1.0, libpython3.9.so.1.0).