From 23ec959ea60392ee5b5d2797e08280612a6b6d29 Mon Sep 17 00:00:00 2001 From: Kevin Cole Date: Sat, 17 Aug 2024 11:26:02 -0400 Subject: [PATCH] Change Python REPL prompt from "$" to ">>>" (#1647) --- doc/installation.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/installation.rst b/doc/installation.rst index 3ab814934..80166075c 100644 --- a/doc/installation.rst +++ b/doc/installation.rst @@ -274,8 +274,8 @@ If all has gone well, you can open a command line/prompt, and type: .. code-block:: $ python - $ import cadquery - $ cadquery.Workplane('XY').box(1,2,3).toSvg() + >>> import cadquery + >>> cadquery.Workplane('XY').box(1,2,3).toSvg() You should see raw SVG output displayed on the command line if the CadQuery installation was successful.