-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Overhaul of quickstart documentation #9128
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Docs/start_quickstart.md
Outdated
|
||
Each release has it's own additional package of extra assets and maps. This additional package includes the maps __Town06__ and __Town07__. These are stored separately to reduce the size of the build, so they can only be imported after the main package has been installed. | ||
The package is a compressed file named __CARLA_version.number__. Download and extract the archive in a convenient location (e.g. the `home` or `Documents` directory), then open a command-line terminal inside the top level of the extracted archive. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CARLA_version.number
This is confusing to me
Docs/start_quickstart.md
Outdated
./ImportAssets.sh | ||
# For the most recent release | ||
pip3 install carla | ||
#pip3 install carla==0.9.14 <= For a specific version |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pip3 install carla==0.9.14 <= For a specific version
It'd put this as a comment in the same line
pip3 install carla # or carla==0.9.14 <= For a specific version
Docs/start_quickstart.md
Outdated
|
||
[config]: https://github.com/carla-simulator/carla/blob/master/PythonAPI/util/config.py | ||
A new PyGame window will open allowing you to control a vehicle in the CARLA simulator with the arrow keys on the keyboard. When writing your own scripts for CARLA, you should import the CARLA Python API, connect to the server (which needs to be launched first) and access the simulation [`world` Object](python_api.md#carlaworld) with the following code: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pygame, not PyGame
In this pull request, the CARLA quickstart documentation has been overhauled:
Additional things included in the pull request:
Description
Fixes #
Where has this been tested?
Possible Drawbacks
This change is