spack/environment\345\206\205\343\201\256\343\203\221\343\203\203\343\202\261\343\203\274\343\202\270\343\202\222\344\270\200\350\246\247\350\241\250\347\244\272\343\201\231\343\202\213.md
... ...
@@ -0,0 +1,50 @@
1
+environment内のパッケージを一覧表示するには、
2
+
3
+```
4
+$ spack find
5
+```
6
+
7
+### その他のオプション
8
+
9
+```
10
+$ spack find --help
11
+usage: spack find [-hdplLNcfumvM] [--format FORMAT | -H | --json] [--groups] [--no-groups] [-t TAG]
12
+ [--show-full-compiler] [-x | -X] [--loaded] [--deprecated] [--only-deprecated]
13
+ [--start-date START_DATE] [--end-date END_DATE]
14
+ ...
15
+
16
+list and search installed packages
17
+
18
+positional arguments:
19
+ installed_specs constraint to select a subset of installed packages
20
+
21
+optional arguments:
22
+ --deprecated show deprecated packages as well as installed specs
23
+ --end-date END_DATE latest date of installation [YYYY-MM-DD]
24
+ --format FORMAT output specs with the specified format string
25
+ --groups display specs in arch/compiler groups (default on)
26
+ --json output specs as machine-readable json records
27
+ --loaded show only packages loaded in the user environment
28
+ --no-groups do not group specs by arch/compiler
29
+ --only-deprecated show only deprecated packages
30
+ --show-full-compiler show full compiler specs
31
+ --start-date START_DATE
32
+ earliest date of installation [YYYY-MM-DD]
33
+ -H, --hashes same as '--format {/hash}'; use with xargs or $()
34
+ -L, --very-long show full dependency hashes as well as versions
35
+ -M, --only-missing show only missing dependencies
36
+ -N, --namespaces show fully qualified package names
37
+ -X, --implicit show only specs that were installed as dependencies
38
+ -c, --show-concretized
39
+ show concretized specs in an environment
40
+ -d, --deps output dependencies along with found specs
41
+ -f, --show-flags show spec compiler flags
42
+ -h, --help show this help message and exit
43
+ -l, --long show dependency hashes as well as versions
44
+ -m, --missing show missing dependencies as well as installed specs
45
+ -p, --paths show paths to package install directories
46
+ -t TAG, --tag TAG filter a package query by tag (multiple use allowed)
47
+ -u, --unknown show only specs Spack does not have a package for
48
+ -v, --variants show variants in output (can be long)
49
+ -x, --explicit show only specs that were installed explicitly
50
+```
... ...
\ No newline at end of file