Platformer (DennisParamonov) Mac OS
The client terminal can be installed and run on computers with Mac OS using Wine. Wine is a free software that allows users of the Unix-based systems to run an application developed for the Microsoft Windows systems. Among all the Wine versions there is one for Mac OS.
Note that Wine is not a fully stable application. Thus, some functions in the applications you start under it may work improperly or not work at all. |
Platformer Starter Kit 1.1.0 for Mac is available as a free download on our software library. Our built-in antivirus scanned this Mac download and rated it as 100% safe. The program is also known as 'Platformer Starter Kit Demo'. This software for Mac OS X is an intellectual property of GarageGames. Platformer Starter Kit for Mac is included in. Macintosh Operating System: The Macintosh Operating System (Mac OS) is an operating system (OS) designed by Apple Inc. To be installed and operated on the Apple Macintosh series of computers. Introduced in 1984, it is a graphical user interface (GUI) based OS that has since been released as multiple different versions. Initially, Mac OS was. You wants to know how to apply AutoCAD license on Windows and Mac, is that possible to activate cross-platform. User changing operating system, from Windows to Mac or vice versa Yes, AutoCAD licenses may be used interchangeably with Windows or Mac. DownloadMT4 for Mac OS and enjoy the full range of MetaTrader 4 advantages for Forex and CFD trading. From now, traders, who use desktop and mobile devices powered by Mac, will have full access to a set of features and instruments delivered by the ultimate Forex platform.
The easiest way to install the trading platform is download the ready-made package from the official website. Install the platform similarly to any other application – drag the platform icon to Applications and wait for the installation to complete.
The trading platform for Mac OS supports the Apple M1 chip and works reliably on any system version including Big Sur.
The installation package is compiled using CrossOver technology. This platform is based on Wine, but unlike other projects and Wine itself, CrossOver is a commercial product. Therefore, its development is much faster: the environment is optimized for better performance of Windows applications, while detected errors are quickly fixed. In contrast to 'pure' Wine, CrossOver has more specialized nature as it is aimed at supporting the most popular office and other Windows applications. Compatibility with these applications is extensively tested and debugged, so they tend to run more stable than in Wine. The trading platform is among these applications.
You do not need to have CrossOver on your computer to install the platform from the ready-made DMG package. Accordingly, its use is absolutely free. You do not need to download any additional components or make any complex adjustments. The platform is immediately ready to go after being installed from the package.
If this does not suit you for some reason, below is an alternative way to launch the platform on your Mac.
PlayOnMac Installation
PlayOnMac is a Wine-based software for easy installation of Windows applications on Mac OS.
To install PlayOnMac, open the product's official web site, move to Downloads section and click the link for downloading the latest version.
After downloading the DMG package, launch it from Downloads section of your system:
PlayOnMac first launch window will appear. After clicking 'Next', the installer will start checking and installing the various components necessary for work.
The first necessary component is XQuartz. This is a software for using X Window System on Mac OS. X Window System provides standard tools and protocols for building the graphical user interface in Unix-like OS.
If you have already installed XQuartz or want to install it later, select 'Don't install XQuartz for the moment' or 'I've downloaded file by myself', respectively.
XQuartz installation is performed in several stages. First of all, you should read the important information (Read Me) and accept the license conditions.
Before the installation, Mac OS security system will ask you to enter your account's password:
Wait for the installation to complete. For changes to take effect, you should restart your PC.
After restarting the system, launch PlayOnMac again from the setup file in Downloads folder. The first launch window will appear again. This time, the installer will offer to install MS Windows fonts necessary for correct operation.
Accept the license agreement conditions and wait till the installation is complete. After that, PlayOnMac is ready for use. Its main window will appear:
Updating Wine
Wine is installed together with PlayOnMac.
To upgrade Wine to the latest version, open PlayOnMac upper menu and select Manage Wine Versions:
The window with Wine versions available for installation will open. Select the latest version.
Move the latest Wine version to the right side of the window. The installation will start.
After the installation is complete, the new version of Wine will appear in the left part of PlayOnMac Wine versions manager window. You can then close the window and install the trading terminal.
Terminal Installation
To install the terminal, download the installer 'mt4setup.exe'. After the download is complete, launch the setup file. PlayOnMac will be used automatically to open it.
The standard terminal installation process with all its stages will start:
When the installation is complete, PlayOnMac will offer you to create the shortcuts for the terminal components - the client terminal itself and MetaEditor:
After creating the necessary shortcuts, you can start using the client terminal. Double click on it in PlayOnMac window to launch the terminal.
Terminal Data Directory
PlayOnMac creates a separate virtual logical drive with necessary environment for each installed program. The default path of the installed terminal's data folder is as follows:
LibraryPlayOnMacWinePrefixClient_Terminal_DriveCProgramFilesClient Terminal |
Source code:Lib/platform.py
Note
Specific platforms listed alphabetically, with Linux included in the Unixsection.
Cross Platform¶
platform.
architecture
(executable=sys.executable, bits=', linkage=')¶Queries the given executable (defaults to the Python interpreter binary) forvarious architecture information.
Returns a tuple (bits,linkage)
which contain information about the bitarchitecture and the linkage format used for the executable. Both values arereturned as strings.
Values that cannot be determined are returned as given by the parameter presets.If bits is given as '
, the sizeof(pointer)
(orsizeof(long)
on Python version < 1.5.2) is used as indicator for thesupported pointer size.
The function relies on the system’s file
command to do the actual work.This is available on most if not all Unix platforms and some non-Unix platformsand then only if the executable points to the Python interpreter. Reasonabledefaults are used when the above needs are not met.
Note
On Mac OS X (and perhaps other platforms), executable files may beuniversal files containing multiple architectures.
To get at the “64-bitness” of the current interpreter, it is morereliable to query the sys.maxsize
attribute:
platform.
machine
()¶Returns the machine type, e.g. 'i386'
. An empty string is returned if thevalue cannot be determined.
platform.
node
()¶Returns the computer’s network name (may not be fully qualified!). An emptystring is returned if the value cannot be determined.
platform.
platform
(aliased=0, terse=0)¶Returns a single string identifying the underlying platform with as much usefulinformation as possible.
The output is intended to be human readable rather than machine parseable. Itmay look different on different platforms and this is intended.
If aliased is true, the function will use aliases for various platforms thatreport system names which differ from their common names, for example SunOS willbe reported as Solaris. The system_alias()
function is used to implementthis.
Setting terse to true causes the function to return only the absolute minimuminformation needed to identify the platform.
Changed in version 3.8: On macOS, the function now uses mac_ver()
, if it returns anon-empty release string, to get the macOS version rather than the darwinversion.
platform.
processor
()¶Returns the (real) processor name, e.g. 'amdk6'
.
An empty string is returned if the value cannot be determined. Note that manyplatforms do not provide this information or simply return the same value as formachine()
. NetBSD does this.
platform.
python_build
()¶Returns a tuple (buildno,builddate)
stating the Python build number anddate as strings.
platform.
python_compiler
()¶Returns a string identifying the compiler used for compiling Python.
platform.
python_branch
()¶Returns a string identifying the Python implementation SCM branch.
platform.
python_implementation
()¶Returns a string identifying the Python implementation. Possible return valuesare: ‘CPython’, ‘IronPython’, ‘Jython’, ‘PyPy’.
platform.
python_revision
()¶Returns a string identifying the Python implementation SCM revision.
platform.
python_version
()¶Returns the Python version as string 'major.minor.patchlevel'
.
Note that unlike the Python sys.version
, the returned value will alwaysinclude the patchlevel (it defaults to 0).
platform.
python_version_tuple
()¶Returns the Python version as tuple (major,minor,patchlevel)
of strings.
Note that unlike the Python sys.version
, the returned value will alwaysinclude the patchlevel (it defaults to '0'
).
platform.
release
()¶Returns the system’s release, e.g. '2.2.0'
or 'NT'
An empty string isreturned if the value cannot be determined.
platform.
system
()¶Returns the system/OS name, such as 'Linux'
, 'Darwin'
, 'Java'
,'Windows'
. An empty string is returned if the value cannot be determined.
platform.
system_alias
(system, release, version)¶Returns (system,release,version)
aliased to common marketing names usedfor some systems. It also does some reordering of the information in some caseswhere it would otherwise cause confusion.
platform.
version
()¶Returns the system’s release version, e.g. '#3ondegas'
. An empty string isreturned if the value cannot be determined.
platform.
uname
()¶Fairly portable uname interface. Returns a namedtuple()
containing six attributes: system
, node
, release
,version
, machine
, and processor
.
Note that this adds a sixth attribute (processor
) not presentin the os.uname()
result. Also, the attribute names are differentfor the first two attributes; os.uname()
names themsysname
and nodename
.
Entries which cannot be determined are set to '
.
Changed in version 3.3: Result changed from a tuple to a namedtuple.
Java Platform¶
platform.
java_ver
(release=', vendor=', vminfo=(', ', '), osinfo=(', ', '))¶Version interface for Jython.
Returns a tuple (release,vendor,vminfo,osinfo)
with vminfo being atuple (vm_name,vm_release,vm_vendor)
and osinfo being a tuple(os_name,os_version,os_arch)
. Values which cannot be determined are set tothe defaults given as parameters (which all default to '
).
Windows Platform¶
platform.
win32_ver
(release=', version=', csd=', ptype=')¶Get additional version information from the Windows Registry and return a tuple(release,version,csd,ptype)
referring to OS release, version number,CSD level (service pack) and OS type (multi/single processor).
As a hint: ptype is 'UniprocessorFree'
on single processor NT machinesand 'MultiprocessorFree'
on multi processor machines. The ‘Free’ refersto the OS version being free of debugging code. It could also state ‘Checked’which means the OS version uses debugging code, i.e. code that checks arguments,ranges, etc.
Platformer (dennisparamonov) Mac Os Download
platform.
win32_edition
()¶Returns a string representing the current Windows edition. Possiblevalues include but are not limited to 'Enterprise'
, 'IoTUAP'
,'ServerStandard'
, and 'nanoserver'
.
platform.
win32_is_iot
()¶Return True
if the Windows edition returned by win32_edition()
is recognized as an IoT edition.
New in version 3.8.
Mac OS Platform¶
platform.
mac_ver
(release=', versioninfo=(', ', '), machine=')¶Get Mac OS version information and return it as tuple (release,versioninfo,machine)
with versioninfo being a tuple (version,dev_stage,non_release_version)
.
Platformer (dennisparamonov) Mac Os X
Entries which cannot be determined are set to '
. All tuple entries arestrings.
Unix Platforms¶
platform.
libc_ver
(executable=sys.executable, lib=', version=', chunksize=16384)¶Tries to determine the libc version against which the file executable (defaultsto the Python interpreter) is linked. Returns a tuple of strings (lib,version)
which default to the given parameters in case the lookup fails.
Note that this function has intimate knowledge of how different libc versionsadd symbols to the executable is probably only usable for executables compiledusing gcc.
The file is read and scanned in chunks of chunksize bytes.