Skip to content

Commit ebaa140

Browse files
committed
PyInstaller
1 parent 6a37169 commit ebaa140

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3466,7 +3466,7 @@ $ pyinstaller script.py --onefile # Compiles into './dist/script' c
34663466
$ pyinstaller script.py --windowed # Compiles into './dist/script' windowed app.
34673467
$ pyinstaller script.py --add-data '<path>:.' # Adds file to the root of the executable.
34683468
```
3469-
* **File paths need to be changed to `'os.path.join(sys._MEIPASS, <path>)'`.**
3469+
* **File paths need to be updated to `'os.path.join(sys._MEIPASS, <path>)'`.**
34703470

34713471
### Basic Script Template
34723472
```python

index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2939,7 +2939,7 @@
29392939

29402940

29412941
<ul>
2942-
<li><strong>File paths need to be changed to <code class="python hljs"><span class="hljs-string">'os.path.join(sys._MEIPASS, &lt;path&gt;)'</span></code>.</strong></li>
2942+
<li><strong>File paths need to be updated to <code class="python hljs"><span class="hljs-string">'os.path.join(sys._MEIPASS, &lt;path&gt;)'</span></code>.</strong></li>
29432943
</ul>
29442944
<div><h3 id="basicscripttemplate">Basic Script Template</h3><pre><code class="python language-python hljs"><span class="hljs-comment">#!/usr/bin/env python3</span>
29452945
<span class="hljs-comment">#</span>

0 commit comments

Comments
 (0)