doc: Note that `guix shell` should contain base language packages.
* doc/guix.texi (Invoking guix shell): Explain that python must be included in the invocation even if it is already available in the external environment. Suggested-by: Skyler <skyvine@protonmail.com>master
parent
e9a5eebc78
commit
9f68a2a9c4
|
@ -96,7 +96,7 @@ Copyright @copyright{} 2021 Domagoj Stolfa@*
|
||||||
Copyright @copyright{} 2021 Hui Lu@*
|
Copyright @copyright{} 2021 Hui Lu@*
|
||||||
Copyright @copyright{} 2021 pukkamustard@*
|
Copyright @copyright{} 2021 pukkamustard@*
|
||||||
Copyright @copyright{} 2021 Alice Brenon@*
|
Copyright @copyright{} 2021 Alice Brenon@*
|
||||||
Copyright @copyright{} 2021, 2022 Josselin Poiret@*
|
Copyright @copyright{} 2021-2023 Josselin Poiret@*
|
||||||
Copyright @copyright{} 2021, 2023 muradm@*
|
Copyright @copyright{} 2021, 2023 muradm@*
|
||||||
Copyright @copyright{} 2021, 2022 Andrew Tropin@*
|
Copyright @copyright{} 2021, 2022 Andrew Tropin@*
|
||||||
Copyright @copyright{} 2021 Sarah Morgensen@*
|
Copyright @copyright{} 2021 Sarah Morgensen@*
|
||||||
|
@ -6271,6 +6271,14 @@ building or downloading any missing package, and runs the
|
||||||
guix shell python python-numpy -- python3
|
guix shell python python-numpy -- python3
|
||||||
@end example
|
@end example
|
||||||
|
|
||||||
|
Note that it is necessary to include the main @code{python} package in
|
||||||
|
this command even if it is already installed into your environment.
|
||||||
|
This is so that the shell environment knows to set @env{PYTHONPATH} and
|
||||||
|
other related variables. The shell environment cannot check the
|
||||||
|
previously installed environment, because then it would be
|
||||||
|
non-deterministic. This is true for most libraries: their corresponding
|
||||||
|
language package should be included in the shell invocation.
|
||||||
|
|
||||||
@quotation Note
|
@quotation Note
|
||||||
@cindex shebang, for @command{guix shell}
|
@cindex shebang, for @command{guix shell}
|
||||||
@command{guix shell} can be also be used as a script interpreter, also
|
@command{guix shell} can be also be used as a script interpreter, also
|
||||||
|
|
Reference in New Issue