Skip to content

Commit a9d0f2a

Browse files
committed
update documentation
1 parent e3d72ff commit a9d0f2a

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

docs/client_setup.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44

55
A Python client uses the following to communicate with the Project AirSim simulation server:
66

7-
- Python 3.7-3.9, 64-bit
7+
- Python 3.7 or newer, 64-bit
88
- **[pynng](https://github.com/codypiersall/pynng)** nanomsg-next-gen wrapper pip package
99

1010
### Setting Up the Client on **Windows**
1111

12-
1. Install Python 3.7-3.9 for Windows. There are many options for installing Python, but one recommended way is to:
12+
1. Install Python 3.7 or newer for Windows. There are many options for installing Python, but one recommended way is to:
1313

1414
- Download the official **[Windows installer for Python](https://www.python.org/downloads/windows/)**. Please note that the 64-bit version is required.
1515

@@ -21,12 +21,12 @@ A Python client uses the following to communicate with the Project AirSim simula
2121

2222
2. Activate the Python environment to use with Project AirSim.
2323

24-
If you don't have a suitable Python environment yet, do the following. Here, we assume we're using Python 3.8 installed in the directory `C:\Python38`, but use the version and directory of your installation of Python:
24+
If you don't have a suitable Python environment yet, do the following. Use the version and directory of your installation of Python:
2525

2626
A) Install `virtualenv` and create a new environment (here named `airsim-venv` but you may choose any convenient name):
2727

28-
C:\Python310\python -m pip install virtualenv
29-
C:\Python310\python -m venv C:\path\to\airsim-venv
28+
python -m pip install virtualenv
29+
python -m venv C:\path\to\airsim-venv
3030

3131
B) Activate your environment:
3232

@@ -72,9 +72,9 @@ A Python client uses the following to communicate with the Project AirSim simula
7272

7373
### Setting Up the Client on **Linux**
7474

75-
1. Install Python 3.7-3.9 to your system:
75+
1. Install Python 3.7 or newer to your system:
7676

77-
Ubuntu 20.04 comes with Python 3.8, but Project AirSim requires additional packages:
77+
Ubuntu 20.04 comes with Python 3.8, while newer versions like Ubuntu 24.04 come with Python 3.12:
7878

7979
sudo apt install python3-dev python3-venv
8080

0 commit comments

Comments
 (0)