From 3f33caf72d722c916aa37c0d2f9c45f5cc9a96a5 Mon Sep 17 00:00:00 2001 From: SirGnip Date: Thu, 1 Oct 2020 08:08:37 -0500 Subject: [PATCH] Tweak PyInstaller tutorial documentation #766 --- doc/tutorials/bundling_with_pyinstaller/index.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/tutorials/bundling_with_pyinstaller/index.rst b/doc/tutorials/bundling_with_pyinstaller/index.rst index aad7ccfa12..ef206025db 100644 --- a/doc/tutorials/bundling_with_pyinstaller/index.rst +++ b/doc/tutorials/bundling_with_pyinstaller/index.rst @@ -28,11 +28,11 @@ To demonstrate how PyInstaller works, we will: * bundle the application into a one-file executable * run the application -First, install PyInstaller into your environment with: +First, make sure both Arcade and PyInstaller are installed in your Python environment with: .. code-block:: bash - pip install pyinstaller + pip install arcade pyinstaller Then create a file called ``myscript.py`` that contains the following: