Choose a remote Python environment
What you will do
Section titled “What you will do”Select a server interpreter and verify where a script runs.
Before you start
Section titled “Before you start”- An active Pro subscription. Third-party AI subscriptions and API credits are separate.
- A working internet connection for the service or download used in this tutorial.
- A reachable SSH server, its hostname/port, a username, and the authentication method you are authorized to use.
Download the tutorial workspace
Where to start
Section titled “Where to start”Connected host → Packages → Environment
Follow the steps
Section titled “Follow the steps”import sys, platform print(sys.executable) print(platform.system())
Screenshot capture is in progress for this preview. This page is not approved for publication.
See the control up close

1

2

3
import sys, platform
print(sys.executable)
print(platform.system())Check the result
Section titled “Check the result”Run the example remotely and check the interpreter path and operating system. A remote result uses server hardware, not the iPad GPU.
If it does not work
Section titled “If it does not work”- For a timeout, check the host, port, network route and server availability.
- For authentication failures, check the username and matching password or private key.
- If the host fingerprint changes, verify it through a trusted channel before replacing the saved fingerprint.