forked from withfig/autocomplete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
conda.ts
1284 lines (1266 loc) · 41.3 KB
/
conda.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
const getInstalledPackages: Fig.Generator = {
script: "conda list",
postProcess: function (out) {
const lines = out.split("\n");
const installedPackages = [];
for (let i = 2; i < lines.length; i++) {
installedPackages.push({
name: lines[i],
icon: "🐍",
});
}
return installedPackages;
},
};
// const getAllCondaPackages: Fig.Generator = {
// //script: "conda search -q",
// script: function (context) {
// if (context[context.length - 1] === "") return "";
// const searchTerm = context[context.length - 1];
// return "conda search '*{searchTerm}*'";
// },
// postProcess: function (out) {
// const lines = out.split("\n");
// const allPackages = [];
// allPackages.push({name: lines[0]});
// // for (let i = 1; i < lines.length; i++) {
// // allPackages.push({
// // name: lines[i],
// // icon: "🐍",
// // });
// // }
// return allPackages;
// },
// };
const getCondaEnvironments: Fig.Generator = {
script: "conda env list",
postProcess: function (out) {
const lines = out.split("\n");
const installedPackages: Fig.Suggestion[] = [];
for (let i = 2; i < lines.length; i++) {
var env_name = lines[i].split(" ")[0];
installedPackages.push({
name: env_name,
icon: "🐍",
});
}
return installedPackages;
},
};
const getCondaConfigs: Fig.Generator = {
script: "conda config --show",
postProcess: function (out) {
const lines = out.split("\n");
const configs: Fig.Suggestion[] = [];
for (let i = 2; i < lines.length; i++) {
var config_name = lines[i].split(":")[0];
if (config_name.includes("-") == false) {
configs.push({
name: config_name,
icon: "🐍",
});
}
}
return configs;
},
};
const name_options: Fig.Option[] = [
{
name: ["-n", "--name"],
description: "Name of environment.",
args: {
name: "Environment",
},
},
{
name: ["-p", "--prefix"],
description: "Full path to environment location (i.e. prefix).",
args: {
name: "path",
template: "filepaths",
},
},
];
const remove_options: Fig.Option[] = [
{
name: ["--dev"],
description:
"Use sys.executable -m conda in wrapper scripts instead of CONDA_EXE. This is mainly for use during tests where we test new conda source against old Python versions.",
},
...name_options,
{
name: ["-c", "--channel"],
description:
"they are given (including local directories using the 'file://' syntax or simply a path like '/home/conda/mychan' or '../mychan'). Then, the defaults or channels from .condarc are searched (unless --override-channels is given). You can use 'defaults' to get the default packages for conda. You can also use any name and the .condarc channel_alias value will be prepended. The default channel_alias is http://conda.anaconda.org/.",
args: {},
},
{
name: ["--use-local"],
description: "Use locally built packages. Identical to '-c local'.",
},
{
name: ["--override-channels"],
description:
"Do not search default or .condarc channels. Requires --channel.",
},
{
name: ["--repodata-fn"],
description:
"Specify name of repodata on remote server. Conda will try whatever you specify, but will ultimately fall back to repodata.json if your specs are not satisfiable with what you specify here. This is used to employ repodata that is reduced in time scope. You may pass this flag more than once. Leftmost entries are tried first, and the fallback to repodata.json is added for you automatically.",
args: {},
},
{
name: ["--all"],
description: "Remove all packages, i.e., the entire environment.",
},
{
name: ["--features"],
description: "Remove features (instead of packages).",
},
{
name: ["--force-remove, --force"],
description:
"Forces removal of a package without removing packages that depend on it. Using this option will usually leave your environment in a broken and inconsistent state.",
},
{ name: ["--no-pin"], description: "Ignore pinned file." },
{
name: ["-C", "--use-index-cache"],
description: "Use cache of channel index files, even if it has expired.",
},
{
name: ["-k", "--insecure"],
description:
"Allow conda to perform insecure SSL connections and transfers. Equivalent to setting 'ssl_verify' to 'false'.",
},
{
name: ["--offline"],
description: "Offline mode. Don't connect to the Internet.",
},
{
name: ["-d", "--dry-run"],
description: "Only display what would have been done.",
},
{
name: ["--json"],
description:
"Report all output as json. Suitable for using conda programmatically.",
},
{
name: ["-q", "--quiet"],
description: "Do not display progress bar.",
},
{
name: ["-v", "--verbose"],
description:
"Can be used multiple times. Once for INFO, twice for DEBUG, three times for TRACE.",
},
{ name: ["-y", "--yes"], description: "Do not ask for confirmation." },
];
const update_options: Fig.Option[] = [
{
name: ["--file"],
description:
"Read package versions from the given file. Repeated file specifications can be passed (e.g. --file=file1 --file=file2).",
args: {
template: "filepaths",
},
},
...name_options,
{
name: ["-c", "--channel"],
description:
"they are given (including local directories using the 'file://' syntax or simply a path like '/home/conda/mychan' or '../mychan'). Then, the defaults or channels from .condarc are searched (unless --override-channels is given). You can use 'defaults' to get the default packages for conda. You can also use any name and the .condarc channel_alias value will be prepended. The default channel_alias is http://conda.anaconda.org/.",
args: {},
},
{
name: ["--use-local"],
description: "Use locally built packages. Identical to '-c local'.",
},
{
name: ["--override-channels"],
description:
"Do not search default or .condarc channels. Requires --channel.",
},
{
name: ["--repodata-fn"],
description:
"Specify name of repodata on remote server. Conda will try whatever you specify, but will ultimately fall back to repodata.json if your specs are not satisfiable with what you specify here. This is used to employ repodata that is reduced in time scope. You may pass this flag more than once. Leftmost entries are tried first, and the fallback to repodata.json is added for you automatically.",
args: {},
},
{
name: ["--strict-channel-priority"],
description:
"Packages in lower priority channels are not considered if a package with the same name appears in a higher priority channel.",
},
{
name: ["--no-channel-priority"],
description:
"Package version takes precedence over channel priority. Overrides the value given by conda config --show channel_priority.",
},
{
name: ["--no-deps"],
description:
"Do not install, update, remove, or change dependencies. This WILL lead to broken environments and inconsistent behavior. Use at your own risk.",
},
{ name: ["--only-deps"], description: "Only install dependencies." },
{ name: ["--no-pin"], description: "Ignore pinned file." },
{
name: ["--force-reinstall"],
description:
"Ensure that any user-requested package for the current operation is uninstalled and reinstalled, even if that package already exists in the environment.",
},
{
name: ["--freeze-installed", "--no-update-deps"],
description: "Do not update or change already-installed dependencies.",
},
{ name: ["--update-deps"], description: "Update dependencies." },
{
name: ["-S", "--satisfied-skip-solve"],
description:
"Exit early and do not run the solver if the requested specs are satisfied. Also skips aggressive updates as configured by 'aggressive_update_packages'. Similar to the default behavior of 'pip install'.",
},
{
name: ["--update-all", "--all"],
description: "Update all installed packages in the environment.",
},
{
name: ["--update-specs"],
description: "Update based on provided specifications.",
},
{
name: ["--copy"],
description:
"Install all packages using copies instead of hard- or soft-linking.",
},
{
name: ["--clobber"],
description:
"Allow clobbering of overlapping file paths within packages, and suppress related warnings.",
},
{
name: ["-C", "--use-index-cache"],
description: "Use cache of channel index files, even if it has expired.",
},
{
name: ["-k", "--insecure"],
description:
"Allow conda to perform insecure SSL connections and transfers. Equivalent to setting 'ssl_verify' to 'false'.",
},
{
name: ["--offline"],
description: "Offline mode. Don't connect to the Internet.",
},
{
name: ["-d", "--dry-run"],
description: "Only display what would have been done.",
},
{
name: ["--json"],
description:
"Report all output as json. Suitable for using conda programmatically.",
},
{
name: ["-q", "--quiet"],
description: "Do not display progress bar.",
},
{
name: ["-v", "--verbose"],
description:
"Can be used multiple times. Once for INFO, twice for DEBUG, three times for TRACE.",
},
{ name: ["-y", "--yes"], description: "Do not ask for confirmation." },
{
name: ["--download-only"],
description:
"Solve an environment and ensure package caches are populated, but exit prior to unlinking and linking packages into the prefix.",
},
{
name: ["--show-channel-urls"],
description:
"Show channel urls. Overrides the value given by conda config --show show_channel_urls.",
},
];
export const completionSpec: Fig.Spec = {
name: "conda",
description: "Conda package manager",
subcommands: [
{
name: "activate",
description: "Activate an environment",
args: {
generators: getCondaEnvironments,
},
options: [
{
name: ["--stack"],
description:
"Stack the environment being activated on top of the previous active environment.",
},
{
name: ["--no-stack"],
description:
"Do not stack the environment. Overrides 'auto_stack' setting",
},
],
},
{
name: "deactivate",
description: "Deactivate an environment",
},
{
name: "clean",
description: "Remove unused packages and caches.",
args: {},
options: [
{
name: ["-a", "--all"],
description:
"Remove index cache, lock files, unused cache packages, and tarballs.",
},
{
name: ["-i", "--index-cache"],
description: "Remove index cache.",
},
{
name: ["-p", "--packages"],
description: "Remove unused packages from writable package caches. ",
},
{
name: ["-t", "--tarballs"],
description: "Remove cached package tarballs.",
},
{
name: ["-f", "--force-pkgs-dirs"],
description: "Remove all writable package caches.",
},
{
name: ["-c", "--tempfiles"],
description:
"Remove temporary files that could not be deleted earlier due to being in-use. Argument is path(s) to prefix(es) where files should be found and removed.",
args: {
template: "filepaths",
variadic: true,
},
},
{
name: ["-d", "--dry-run"],
description: "Only display what would have been done.",
},
{
name: ["--json"],
description:
"Report all output as json. Suitable for using conda programmatically.",
},
{
name: ["-q", "--quiet"],
description: "Do not display progress bar.",
},
{
name: ["-v", "--verbose"],
description:
"Can be used multiple times. Once for INFO, twice for DEBUG, three times for TRACE.",
},
{
name: ["-y", "--yes"],
description: "Do not ask for confirmation.",
},
],
},
{
name: "compare",
description: "Compare packages between conda environments.",
args: {
name: "file",
description:
"Path to the environment file that is to be compared against",
template: "filepaths",
},
options: [
...name_options,
{
name: ["-h", "--help"],
description: "Show this help message and exit.",
},
{
name: ["--json"],
description:
"Report all output as json. Suitable for using conda programmatically.",
},
{
name: ["-v", "--verbose"],
description:
"Use once for info, twice for debug, three times for trace.",
},
{
name: ["-q", "--quiet"],
description: "Do not display progress bar.",
},
],
},
{
name: "config",
description:
"Modify configuration values in .condarc. This is modeled after the git config command. Writes to the user .condarc file by default.",
options: [
{
name: ["--json"],
description:
"Report all output as json. Suitable for using conda programmatically.",
},
{
name: ["-v, --verbose"],
description:
"Use once for info, twice for debug, three times for trace.",
},
{ name: ["-q, --quiet"], description: "Do not display progress bar." },
{
name: ["--system"],
description:
"Write to the system .condarc file at '/home/docs/checkouts/readthedocs.org/user_builds/continuumio-conda/conda/latest/.condarc'.",
},
{
name: ["--env"],
description:
"Write to the active conda environment .condarc file (<no active environment>). If no environment is active, write to the user config file (/home/docs/.condarc).",
},
{
name: ["--file"],
description: "Write to the given file.",
args: {
name: "Target File",
template: "filepaths",
},
},
{
name: ["--show"],
description:
"Display configuration values as calculated and compiled. If no arguments given, show information for all configuration values.",
args: {
name: "Configuration values",
isOptional: true,
variadic: true,
generators: getCondaConfigs,
},
},
{
name: ["--show-sources"],
description: "Display all identified configuration sources.",
},
{
name: ["--validate"],
description: "Validate all configuration sources.",
},
{
name: ["--describe"],
description:
"Describe given configuration parameters. If no arguments given, show information for all configuration parameters.",
args: {
name: "Configuration values",
isOptional: true,
variadic: true,
generators: getCondaConfigs,
},
},
{
name: ["--write-default"],
description:
"Write the default configuration to a file. Equivalent to conda config --describe > ~/.condarc.",
},
{
name: ["--get"],
description: "Get a configuration value.",
args: [
{
name: "key",
isOptional: true,
variadic: true,
},
],
},
{
name: ["--append"],
description: "Add one configuration value to the end of a list key.",
args: [
{
name: "key",
},
{
name: "value",
},
],
},
{
name: ["--prepend, --add"],
description:
"Add one configuration value to the beginning of a list key.",
args: [
{
name: "key",
},
{
name: "value",
},
],
},
{
name: ["--set"],
description: "Set a boolean or string key",
args: [
{
name: "key",
},
{
name: "value",
},
],
},
{
name: ["--remove"],
description:
"Remove a configuration value from a list key. This removes all instances of the value.",
args: [
{
name: "key",
},
{
name: "value",
},
],
},
{
name: ["--remove-key"],
description: "Remove a configuration key (and all its values).",
args: [
{
name: "key",
},
],
},
{
name: ["--stdin"],
description:
"Apply configuration information given in yaml format piped through stdin.",
},
],
},
{
name: "create",
description:
"Create a new conda environment from a list of specified packages.",
args: {
name: "package_spec",
description: "Packages to install or update in the conda environment",
isOptional: true,
variadic: true,
},
options: [
{
name: ["--clone"],
description: "Path to (or name of) existing local environment.",
args: {
generators: getCondaEnvironments,
},
},
{
name: ["--file"],
description:
"Read package versions from the given file. Repeated file specifications can be passed (e.g. --file=file1 --file=file2).",
args: {
template: "filepaths",
},
},
{
name: ["--dev"],
description:
"Use sys.executable -m conda in wrapper scripts instead of CONDA_EXE. This is mainly for use during tests where we test new conda source against old Python versions.",
},
...name_options,
{
name: ["-c, --channel"],
description:
"they are given (including local directories using the 'file://' syntax or simply a path like '/home/conda/mychan' or '../mychan'). Then, the defaults or channels from .condarc are searched (unless --override-channels is given). You can use 'defaults' to get the default packages for conda. You can also use any name and the .condarc channel_alias value will be prepended. The default channel_alias is http://conda.anaconda.org/.",
args: {},
},
{
name: ["--use-local"],
description: "Use locally built packages. Identical to '-c local'.",
},
{
name: ["--override-channels"],
description:
"Do not search default or .condarc channels. Requires --channel.",
},
{
name: ["--repodata-fn"],
description:
"Specify name of repodata on remote server. Conda will try whatever you specify, but will ultimately fall back to repodata.json if your specs are not satisfiable with what you specify here. This is used to employ repodata that is reduced in time scope. You may pass this flag more than once. Leftmost entries are tried first, and the fallback to repodata.json is added for you automatically.",
args: {},
},
{
name: ["--strict-channel-priority"],
description:
"Packages in lower priority channels are not considered if a package with the same name appears in a higher priority channel.",
},
{
name: ["--no-channel-priority"],
description:
"Package version takes precedence over channel priority. Overrides the value given by conda config --show channel_priority.",
},
{
name: ["--no-deps"],
description:
"Do not install, update, remove, or change dependencies. This WILL lead to broken environments and inconsistent behavior. Use at your own risk.",
isDangerous: true,
},
{ name: ["--only-deps"], description: "Only install dependencies." },
{ name: ["--no-pin"], description: "Ignore pinned file." },
{
name: ["--no-default-packages"],
description: "Ignore create_default_packages in the .condarc file.",
},
{
name: ["--copy"],
description:
"Install all packages using copies instead of hard- or soft-linking.",
},
{
name: ["-C, --use-index-cache"],
description:
"Use cache of channel index files, even if it has expired.",
},
{
name: ["-k, --insecure"],
description:
"Allow conda to perform insecure SSL connections and transfers. Equivalent to setting 'ssl_verify' to 'false'.",
},
{
name: ["--offline"],
description: "Offline mode. Don't connect to the Internet.",
},
{
name: ["-d, --dry-run"],
description: "Only display what would have been done.",
},
{
name: ["--json"],
description:
"Report all output as json. Suitable for using conda programmatically.",
},
{ name: ["-q, --quiet"], description: "Do not display progress bar." },
{
name: ["-v, --verbose"],
description:
"Can be used multiple times. Once for INFO, twice for DEBUG, three times for TRACE.",
},
{ name: ["-y, --yes"], description: "Do not ask for confirmation." },
{
name: ["--download-only"],
description:
"Solve an environment and ensure package caches are populated, but exit prior to unlinking and linking packages into the prefix.",
},
{
name: ["--show-channel-urls"],
description:
"Show channel urls. Overrides the value given by conda config --show show_channel_urls.",
},
],
},
{
name: "help",
description:
"Displays a list of available conda commands and their help strings.",
},
{
name: "info",
description: "Display information about current conda install.",
options: [
{ name: ["-a", "--all"], description: "Show all information." },
{ name: ["--base"], description: "Display base environment path." },
{
name: ["-e", "--envs"],
description: "List all known conda environments.",
},
{
name: ["-s", "--system"],
description: "List environment variables.",
},
{
name: ["--unsafe-channels"],
description: "Display list of channels with tokens exposed.",
},
{
name: ["--json"],
description:
"Report all output as json. Suitable for using conda programmatically.",
},
{
name: ["-v", "--verbose"],
description:
"Use once for info, twice for debug, three times for trace.",
},
{
name: ["-q", "--quiet"],
description: "Do not display progress bar.",
},
],
},
{
name: "init",
description: "Initialize conda for shell interaction. [Experimental]",
},
{
name: "install",
description:
"Installs a list of packages into a specified conda environment.",
args: {
name: "package spec",
description: "Packages to install or update in the conda environment.",
variadic: true,
//generators: getAllCondaPackages,
},
options: [
{
name: ["--revision"],
description: "Revert to the specified REVISION.",
args: {},
},
{
name: ["--file"],
description:
"Read package versions from the given file. Repeated file specifications can be passed (e.g. --file=file1 --file=file2).",
args: {
template: "filepaths",
},
},
{
name: ["--dev"],
description:
"Use sys.executable -m conda in wrapper scripts instead of CONDA_EXE. This is mainly for use during tests where we test new conda source against old Python versions.",
},
...name_options,
{
name: ["-c, --channel"],
description:
"they are given (including local directories using the 'file://' syntax or simply a path like '/home/conda/mychan' or '../mychan'). Then, the defaults or channels from .condarc are searched (unless --override-channels is given). You can use 'defaults' to get the default packages for conda. You can also use any name and the .condarc channel_alias value will be prepended. The default channel_alias is http://conda.anaconda.org/.",
args: {},
},
{
name: ["--use-local"],
description: "Use locally built packages. Identical to '-c local'.",
},
{
name: ["--override-channels"],
description:
"Do not search default or .condarc channels. Requires --channel.",
},
{
name: ["--repodata-fn"],
description:
"Specify name of repodata on remote server. Conda will try whatever you specify, but will ultimately fall back to repodata.json if your specs are not satisfiable with what you specify here. This is used to employ repodata that is reduced in time scope. You may pass this flag more than once. Leftmost entries are tried first, and the fallback to repodata.json is added for you automatically.",
args: {},
},
{
name: ["--strict-channel-priority"],
description:
"Packages in lower priority channels are not considered if a package with the same name appears in a higher priority channel.",
},
{
name: ["--no-channel-priority"],
description:
"Package version takes precedence over channel priority. Overrides the value given by conda config --show channel_priority.",
},
{
name: ["--no-deps"],
description:
"Do not install, update, remove, or change dependencies. This WILL lead to broken environments and inconsistent behavior. Use at your own risk.",
},
{ name: ["--only-deps"], description: "Only install dependencies." },
{ name: ["--no-pin"], description: "Ignore pinned file." },
{
name: ["--force-reinstall"],
description:
"Ensure that any user-requested package for the current operation is uninstalled and reinstalled, even if that package already exists in the environment.",
},
{
name: ["--freeze-installed", "--no-update-deps"],
description:
"Do not update or change already-installed dependencies.",
},
{ name: ["--update-deps"], description: "Update dependencies." },
{
name: ["-S", "--satisfied-skip-solve"],
description:
"Exit early and do not run the solver if the requested specs are satisfied. Also skips aggressive updates as configured by 'aggressive_update_packages'. Similar to the default behavior of 'pip install'.",
},
{
name: ["--update-all", "--all"],
description: "Update all installed packages in the environment.",
},
{
name: ["--update-specs"],
description: "Update based on provided specifications.",
},
{
name: ["--copy"],
description:
"Install all packages using copies instead of hard- or soft-linking.",
},
{
name: ["-m", "--mkdir"],
description: "Create the environment directory if necessary.",
},
{
name: ["--clobber"],
description:
"Allow clobbering of overlapping file paths within packages, and suppress related warnings.",
},
{
name: ["-C", "--use-index-cache"],
description:
"Use cache of channel index files, even if it has expired.",
},
{
name: ["-k", "--insecure"],
description:
"Allow conda to perform insecure SSL connections and transfers. Equivalent to setting 'ssl_verify' to 'false'.",
},
{
name: ["--offline"],
description: "Offline mode. Don't connect to the Internet.",
},
{
name: ["-d", "--dry-run"],
description: "Only display what would have been done.",
},
{
name: ["--json"],
description:
"Report all output as json. Suitable for using conda programmatically.",
},
{
name: ["-q", "--quiet"],
description: "Do not display progress bar.",
},
{
name: ["-v", "--verbose"],
description:
"Can be used multiple times. Once for INFO, twice for DEBUG, three times for TRACE.",
},
{ name: ["-y", "--yes"], description: "Do not ask for confirmation." },
{
name: ["--download-only"],
description:
"Solve an environment and ensure package caches are populated, but exit prior to unlinking and linking packages into the prefix.",
},
{
name: ["--show-channel-urls"],
description:
"Show channel urls. Overrides the value given by conda config --show show_channel_urls.",
},
],
},
{
name: "list",
description: "List linked packages in a conda environment.",
args: {
name: "regex",
description: "List only packages matching this regular expression.",
isOptional: true,
},
options: [
{
name: ["--show-channel-urls"],
description:
"Show channel urls. Overrides the value given by conda config --show show_channel_urls.",
},
{
name: ["-c", "--canonical"],
description:
"Output canonical names of packages only. Implies --no-pip.",
},
{
name: ["-f", "--full-name"],
description: "Only search for full names, i.e., ^<regex>$.",
},
{
name: ["--explicit"],
description:
"List explicitly all installed conda packaged with URL (output may be used by conda create --file).",
},
{
name: ["--md5"],
description: "Add MD5 hashsum when using --explicit.",
},
{
name: ["-e", "--export"],
description:
"Output requirement string only (output may be used by conda create --file).",
},
{
name: ["-r", "--revisions"],
description: "List the revision history and exit.",
},
{
name: ["--no-pip"],
description: "Do not include pip-only installed packages.",
},
...name_options,
{
name: ["--json"],
description:
"Report all output as json. Suitable for using conda programmatically.",
},
{
name: ["-v", "--verbose"],
description:
"Use once for info, twice for debug, three times for trace.",
},
{
name: ["-q", "--quiet"],
description: "Do not display progress bar.",
},
],
},
{
name: "package",
description: "Low-level conda package utility. (EXPERIMENTAL)",
options: [
{
name: ["-w", "--which"],
description:
"Given some PATH print which conda package the file came from.",
args: {
name: "Path",
variadic: true,
},
},
{
name: ["-r", "--reset"],
description: "Remove all untracked files and exit.",
},
{
name: ["-u", "--untracked"],
description: "Display all untracked files and exit.",
},
{
name: ["--pkg-name"],
description: "Package name of the created package.",
args: {},
},
{
name: ["--pkg-version"],
description: "Package version of the created package.",
args: {},
},
{
name: ["--pkg-build"],
description: "Package build number of the created package.",
args: {},
},
...name_options,
],
},
{
name: "remove",
description:
"Remove a list of packages from a specified conda environment.",
args: {
name: "package name",
variadic: true,
generators: getInstalledPackages,
},
options: [...remove_options],
},
{
name: "uninstall",
description: "Alias for conda remove.",
args: {
name: "package name",
variadic: true,
generators: getInstalledPackages,
},
options: [...remove_options],
},
{
name: "run",
description: "Run an executable in a conda environment. [Experimental]",
args: {
name: "executable",
template: "filepaths",
},
options: [
...name_options,
{