You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This way, when you type `python` in the terminal, the system will find the Python program in `/opt/custompython/bin` (the last directory) and use that one.
231
-
232
230
////
233
231
234
232
//// tab | Windows
@@ -241,8 +239,6 @@ If you say yes to update the `PATH` environment variable, then the installer wil
This way, when you type `python` in the terminal, the system will find the Python program in `C:\opt\custompython\bin` (the last directory) and use that one.
245
-
246
242
////
247
243
248
244
So, if you type:
@@ -257,7 +253,7 @@ $ python
257
253
258
254
//// tab | Linux, macOS
259
255
260
-
The system will **find** the `python` program in `/opt/custompython/bin` and run it.
256
+
The system will **find** the `python` program in `/opt/custompython/bin`(the last directory) and run it.
Copy file name to clipboardExpand all lines: docs/release-notes.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,13 +2,19 @@
2
2
3
3
## Latest Changes
4
4
5
+
### Features
6
+
7
+
* ✨ Add support for standard tracebacks via the env `TYPER_STANDARD_TRACEBACK`. PR [#1299](https://github.com/fastapi/typer/pull/1299) by [@colin-nolan](https://github.com/colin-nolan).
8
+
5
9
### Docs
6
10
11
+
* 📝 Remove duplicate explanation how the path is resolved. PR [#956](https://github.com/fastapi/typer/pull/956) by [@dennis-rall](https://github.com/dennis-rall).
7
12
* 📝 Update docs to use `Typer()` more prominently. PR [#1418](https://github.com/fastapi/typer/pull/1418) by [@svlandeg](https://github.com/svlandeg).
8
13
* 💄 Use font 'Fira Code' to fix display of Rich panels in docs in Windows. PR [#1419](https://github.com/fastapi/typer/pull/1419) by [@tiangolo](https://github.com/tiangolo).
9
14
10
15
### Internal
11
16
17
+
* ✅ Update tests to use `mod.app` . PR [#1427](https://github.com/fastapi/typer/pull/1427) by [@svlandeg](https://github.com/svlandeg).
12
18
* ⬆ Bump actions/checkout from 5 to 6. PR [#1426](https://github.com/fastapi/typer/pull/1426) by [@dependabot[bot]](https://github.com/apps/dependabot).
13
19
* ⬆ [pre-commit.ci] pre-commit autoupdate. PR [#1425](https://github.com/fastapi/typer/pull/1425) by [@pre-commit-ci[bot]](https://github.com/apps/pre-commit-ci).
14
20
* ⬆ Bump ruff from 0.14.5 to 0.14.6. PR [#1423](https://github.com/fastapi/typer/pull/1423) by [@dependabot[bot]](https://github.com/apps/dependabot).
Copy file name to clipboardExpand all lines: docs/tutorial/exceptions.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -235,14 +235,14 @@ TypeError: can only concatenate str (not "int") to str
235
235
236
236
</div>
237
237
238
-
You could also achieve the same with the environment variable `_TYPER_STANDARD_TRACEBACK=1`.
238
+
You could also achieve the same with the environment variable `TYPER_STANDARD_TRACEBACK=1` (or by setting the deprecated variable `_TYPER_STANDARD_TRACEBACK=1`).
239
239
240
240
This will work for any other Typer program too, in case you need to debug a problem in a Typer program made by someone else:
0 commit comments