-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy patherror.log
More file actions
1086 lines (1065 loc) · 62.2 KB
/
Copy patherror.log
File metadata and controls
1086 lines (1065 loc) · 62.2 KB
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
+ bash build.sh
+ docker build -t pi-agent:latest -f Dockerfile .
#0 building with "desktop-linux" instance using docker driver
#1 [internal] load build definition from Dockerfile
#1 transferring dockerfile: 719B done
#1 DONE 0.0s
#2 [internal] load metadata for docker.io/library/node:latest
#2 DONE 0.2s
#3 [internal] load .dockerignore
#3 transferring context: 2B done
#3 DONE 0.0s
#4 [ 1/10] FROM docker.io/library/node:latest@sha256:0473e7dc433a1310f436edee02aa79737ec78a4b345433ab0963d4a256f9ad85
#4 resolve docker.io/library/node:latest@sha256:0473e7dc433a1310f436edee02aa79737ec78a4b345433ab0963d4a256f9ad85 done
#4 DONE 0.0s
#5 [internal] load build context
#5 transferring context: 1.47kB done
#5 DONE 0.0s
#6 [ 4/10] RUN curl -fsSL https://pi.dev/install.sh | sh && pi update && pi update --extensions && bash /install/pi-extensions.sh
#6 CACHED
#7 [ 8/10] COPY entrypoint.sh /pi.sh
#7 CACHED
#8 [ 3/10] COPY install /install
#8 CACHED
#9 [ 2/10] RUN apt update && apt install -y vim curl wget unzip
#9 CACHED
#10 [ 5/10] COPY models.json /root/.pi/agent/models.json
#10 CACHED
#11 [ 6/10] COPY docker/bin /root/.pi/agent/bin
#11 CACHED
#12 [ 7/10] WORKDIR /root/brain/
#12 CACHED
#13 [ 9/10] RUN chmod +x /pi.sh
#13 CACHED
#14 exporting to image
#14 exporting layers done
#14 exporting manifest sha256:14a4dc3da0ecba6399018211f92b408f342e99098c6578aeffd66d5b35e69948 done
#14 exporting config sha256:972d31be104c49e84a6c42f6e4d260cff775a369efe55745c95b8633413c982d done
#14 exporting attestation manifest sha256:cb2cf23e467f37ded5872ec3293d0b636da03892ceca8516485e9294b423c7b1 done
#14 exporting manifest list sha256:a54a50d8aecd02a44d3d6b803765a9784f77feb66b72bceafd79bec8573d92b4 done
#14 naming to docker.io/library/pi-agent:latest done
#14 unpacking to docker.io/library/pi-agent:latest done
#14 DONE 0.0s
+ docker images
+ grep pi-agent
+ docker build -t pi-agent:latest -f Dockerfile-antsable .
#0 building with "desktop-linux" instance using docker driver
#1 [internal] load build definition from Dockerfile-antsable
#1 transferring dockerfile: 763B done
#1 DONE 0.0s
#2 [internal] load metadata for docker.io/library/pi-agent:latest
#2 DONE 0.0s
#3 [internal] load .dockerignore
#3 transferring context: 2B done
#3 DONE 0.0s
#4 [1/5] FROM docker.io/library/pi-agent:latest@sha256:a54a50d8aecd02a44d3d6b803765a9784f77feb66b72bceafd79bec8573d92b4
#4 resolve docker.io/library/pi-agent:latest@sha256:a54a50d8aecd02a44d3d6b803765a9784f77feb66b72bceafd79bec8573d92b4 done
#4 DONE 0.0s
#5 [2/5] RUN apt update && apt install -y build-essential
#5 CACHED
#6 [3/5] RUN curl -fsSL https://bootstrap.pypa.io/get-pip.py | python3 - --break-system-packages && python3 -m pip install -U pip --break-system-packages
#6 CACHED
#7 [4/5] RUN curl -fsSL https://raw.githubusercontent.com/TheShellLand/automonisaur/refs/heads/master/requirements.txt | grep -v "#" | grep -v "$^" | xargs -I{} python3 -m pip install -U {}
#7 0.464 error: externally-managed-environment
#7 0.464
#7 0.464 × This environment is externally managed
#7 0.464 ╰─> To install Python packages system-wide, try apt install
#7 0.464 python3-xyz, where xyz is the package you are trying to
#7 0.464 install.
#7 0.464
#7 0.464 If you wish to install a non-Debian-packaged Python package,
#7 0.464 create a virtual environment using python3 -m venv path/to/venv.
#7 0.464 Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
#7 0.464 sure you have python3-full installed.
#7 0.464
#7 0.464 If you wish to install a non-Debian packaged Python application,
#7 0.464 it may be easiest to use pipx install xyz, which will manage a
#7 0.464 virtual environment for you. Make sure you have pipx installed.
#7 0.464
#7 0.464 See /usr/share/doc/python3.13/README.venv for more information.
#7 0.464
#7 0.464 note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
#7 0.464 hint: See PEP 668 for the detailed specification.
#7 0.597 error: externally-managed-environment
#7 0.597
#7 0.597 × This environment is externally managed
#7 0.597 ╰─> To install Python packages system-wide, try apt install
#7 0.597 python3-xyz, where xyz is the package you are trying to
#7 0.597 install.
#7 0.597
#7 0.597 If you wish to install a non-Debian-packaged Python package,
#7 0.597 create a virtual environment using python3 -m venv path/to/venv.
#7 0.597 Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
#7 0.597 sure you have python3-full installed.
#7 0.597
#7 0.597 If you wish to install a non-Debian packaged Python application,
#7 0.597 it may be easiest to use pipx install xyz, which will manage a
#7 0.597 virtual environment for you. Make sure you have pipx installed.
#7 0.597
#7 0.597 See /usr/share/doc/python3.13/README.venv for more information.
#7 0.597
#7 0.597 note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
#7 0.597 hint: See PEP 668 for the detailed specification.
#7 0.730 error: externally-managed-environment
#7 0.730
#7 0.730 × This environment is externally managed
#7 0.730 ╰─> To install Python packages system-wide, try apt install
#7 0.730 python3-xyz, where xyz is the package you are trying to
#7 0.730 install.
#7 0.730
#7 0.730 If you wish to install a non-Debian-packaged Python package,
#7 0.730 create a virtual environment using python3 -m venv path/to/venv.
#7 0.730 Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
#7 0.730 sure you have python3-full installed.
#7 0.730
#7 0.730 If you wish to install a non-Debian packaged Python application,
#7 0.730 it may be easiest to use pipx install xyz, which will manage a
#7 0.730 virtual environment for you. Make sure you have pipx installed.
#7 0.730
#7 0.730 See /usr/share/doc/python3.13/README.venv for more information.
#7 0.730
#7 0.730 note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
#7 0.730 hint: See PEP 668 for the detailed specification.
#7 0.869 error: externally-managed-environment
#7 0.869
#7 0.869 × This environment is externally managed
#7 0.869 ╰─> To install Python packages system-wide, try apt install
#7 0.869 python3-xyz, where xyz is the package you are trying to
#7 0.869 install.
#7 0.869
#7 0.869 If you wish to install a non-Debian-packaged Python package,
#7 0.869 create a virtual environment using python3 -m venv path/to/venv.
#7 0.869 Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
#7 0.869 sure you have python3-full installed.
#7 0.869
#7 0.869 If you wish to install a non-Debian packaged Python application,
#7 0.869 it may be easiest to use pipx install xyz, which will manage a
#7 0.869 virtual environment for you. Make sure you have pipx installed.
#7 0.869
#7 0.869 See /usr/share/doc/python3.13/README.venv for more information.
#7 0.869
#7 0.869 note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
#7 0.869 hint: See PEP 668 for the detailed specification.
#7 1.006 error: externally-managed-environment
#7 1.006
#7 1.006 × This environment is externally managed
#7 1.006 ╰─> To install Python packages system-wide, try apt install
#7 1.006 python3-xyz, where xyz is the package you are trying to
#7 1.006 install.
#7 1.006
#7 1.006 If you wish to install a non-Debian-packaged Python package,
#7 1.006 create a virtual environment using python3 -m venv path/to/venv.
#7 1.006 Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
#7 1.006 sure you have python3-full installed.
#7 1.006
#7 1.006 If you wish to install a non-Debian packaged Python application,
#7 1.006 it may be easiest to use pipx install xyz, which will manage a
#7 1.006 virtual environment for you. Make sure you have pipx installed.
#7 1.006
#7 1.006 See /usr/share/doc/python3.13/README.venv for more information.
#7 1.006
#7 1.006 note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
#7 1.006 hint: See PEP 668 for the detailed specification.
#7 1.147 error: externally-managed-environment
#7 1.147
#7 1.147 × This environment is externally managed
#7 1.147 ╰─> To install Python packages system-wide, try apt install
#7 1.147 python3-xyz, where xyz is the package you are trying to
#7 1.147 install.
#7 1.147
#7 1.147 If you wish to install a non-Debian-packaged Python package,
#7 1.147 create a virtual environment using python3 -m venv path/to/venv.
#7 1.147 Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
#7 1.147 sure you have python3-full installed.
#7 1.147
#7 1.147 If you wish to install a non-Debian packaged Python application,
#7 1.147 it may be easiest to use pipx install xyz, which will manage a
#7 1.147 virtual environment for you. Make sure you have pipx installed.
#7 1.147
#7 1.147 See /usr/share/doc/python3.13/README.venv for more information.
#7 1.147
#7 1.147 note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
#7 1.147 hint: See PEP 668 for the detailed specification.
#7 1.288 error: externally-managed-environment
#7 1.288
#7 1.288 × This environment is externally managed
#7 1.288 ╰─> To install Python packages system-wide, try apt install
#7 1.288 python3-xyz, where xyz is the package you are trying to
#7 1.288 install.
#7 1.288
#7 1.288 If you wish to install a non-Debian-packaged Python package,
#7 1.288 create a virtual environment using python3 -m venv path/to/venv.
#7 1.288 Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
#7 1.288 sure you have python3-full installed.
#7 1.288
#7 1.288 If you wish to install a non-Debian packaged Python application,
#7 1.288 it may be easiest to use pipx install xyz, which will manage a
#7 1.288 virtual environment for you. Make sure you have pipx installed.
#7 1.288
#7 1.288 See /usr/share/doc/python3.13/README.venv for more information.
#7 1.288
#7 1.288 note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
#7 1.288 hint: See PEP 668 for the detailed specification.
#7 1.423 error: externally-managed-environment
#7 1.423
#7 1.423 × This environment is externally managed
#7 1.423 ╰─> To install Python packages system-wide, try apt install
#7 1.423 python3-xyz, where xyz is the package you are trying to
#7 1.423 install.
#7 1.423
#7 1.423 If you wish to install a non-Debian-packaged Python package,
#7 1.423 create a virtual environment using python3 -m venv path/to/venv.
#7 1.423 Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
#7 1.423 sure you have python3-full installed.
#7 1.423
#7 1.423 If you wish to install a non-Debian packaged Python application,
#7 1.423 it may be easiest to use pipx install xyz, which will manage a
#7 1.423 virtual environment for you. Make sure you have pipx installed.
#7 1.423
#7 1.423 See /usr/share/doc/python3.13/README.venv for more information.
#7 1.423
#7 1.423 note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
#7 1.423 hint: See PEP 668 for the detailed specification.
#7 1.554 error: externally-managed-environment
#7 1.554
#7 1.554 × This environment is externally managed
#7 1.554 ╰─> To install Python packages system-wide, try apt install
#7 1.554 python3-xyz, where xyz is the package you are trying to
#7 1.554 install.
#7 1.554
#7 1.554 If you wish to install a non-Debian-packaged Python package,
#7 1.554 create a virtual environment using python3 -m venv path/to/venv.
#7 1.554 Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
#7 1.554 sure you have python3-full installed.
#7 1.554
#7 1.554 If you wish to install a non-Debian packaged Python application,
#7 1.554 it may be easiest to use pipx install xyz, which will manage a
#7 1.554 virtual environment for you. Make sure you have pipx installed.
#7 1.554
#7 1.554 See /usr/share/doc/python3.13/README.venv for more information.
#7 1.554
#7 1.554 note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
#7 1.554 hint: See PEP 668 for the detailed specification.
#7 1.681 error: externally-managed-environment
#7 1.681
#7 1.681 × This environment is externally managed
#7 1.681 ╰─> To install Python packages system-wide, try apt install
#7 1.681 python3-xyz, where xyz is the package you are trying to
#7 1.681 install.
#7 1.681
#7 1.681 If you wish to install a non-Debian-packaged Python package,
#7 1.681 create a virtual environment using python3 -m venv path/to/venv.
#7 1.681 Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
#7 1.681 sure you have python3-full installed.
#7 1.681
#7 1.681 If you wish to install a non-Debian packaged Python application,
#7 1.681 it may be easiest to use pipx install xyz, which will manage a
#7 1.681 virtual environment for you. Make sure you have pipx installed.
#7 1.681
#7 1.681 See /usr/share/doc/python3.13/README.venv for more information.
#7 1.681
#7 1.681 note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
#7 1.681 hint: See PEP 668 for the detailed specification.
#7 1.816 error: externally-managed-environment
#7 1.816
#7 1.816 × This environment is externally managed
#7 1.816 ╰─> To install Python packages system-wide, try apt install
#7 1.816 python3-xyz, where xyz is the package you are trying to
#7 1.816 install.
#7 1.816
#7 1.816 If you wish to install a non-Debian-packaged Python package,
#7 1.816 create a virtual environment using python3 -m venv path/to/venv.
#7 1.816 Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
#7 1.816 sure you have python3-full installed.
#7 1.816
#7 1.816 If you wish to install a non-Debian packaged Python application,
#7 1.816 it may be easiest to use pipx install xyz, which will manage a
#7 1.816 virtual environment for you. Make sure you have pipx installed.
#7 1.816
#7 1.816 See /usr/share/doc/python3.13/README.venv for more information.
#7 1.816
#7 1.816 note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
#7 1.816 hint: See PEP 668 for the detailed specification.
#7 1.956 error: externally-managed-environment
#7 1.956
#7 1.956 × This environment is externally managed
#7 1.956 ╰─> To install Python packages system-wide, try apt install
#7 1.956 python3-xyz, where xyz is the package you are trying to
#7 1.956 install.
#7 1.956
#7 1.956 If you wish to install a non-Debian-packaged Python package,
#7 1.956 create a virtual environment using python3 -m venv path/to/venv.
#7 1.956 Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
#7 1.956 sure you have python3-full installed.
#7 1.956
#7 1.956 If you wish to install a non-Debian packaged Python application,
#7 1.956 it may be easiest to use pipx install xyz, which will manage a
#7 1.956 virtual environment for you. Make sure you have pipx installed.
#7 1.956
#7 1.956 See /usr/share/doc/python3.13/README.venv for more information.
#7 1.956
#7 1.956 note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
#7 1.956 hint: See PEP 668 for the detailed specification.
#7 2.096 error: externally-managed-environment
#7 2.096
#7 2.096 × This environment is externally managed
#7 2.096 ╰─> To install Python packages system-wide, try apt install
#7 2.096 python3-xyz, where xyz is the package you are trying to
#7 2.096 install.
#7 2.096
#7 2.096 If you wish to install a non-Debian-packaged Python package,
#7 2.096 create a virtual environment using python3 -m venv path/to/venv.
#7 2.096 Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
#7 2.096 sure you have python3-full installed.
#7 2.096
#7 2.096 If you wish to install a non-Debian packaged Python application,
#7 2.096 it may be easiest to use pipx install xyz, which will manage a
#7 2.096 virtual environment for you. Make sure you have pipx installed.
#7 2.096
#7 2.096 See /usr/share/doc/python3.13/README.venv for more information.
#7 2.096
#7 2.096 note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
#7 2.096 hint: See PEP 668 for the detailed specification.
#7 2.253 error: externally-managed-environment
#7 2.253
#7 2.253 × This environment is externally managed
#7 2.253 ╰─> To install Python packages system-wide, try apt install
#7 2.253 python3-xyz, where xyz is the package you are trying to
#7 2.253 install.
#7 2.253
#7 2.253 If you wish to install a non-Debian-packaged Python package,
#7 2.253 create a virtual environment using python3 -m venv path/to/venv.
#7 2.253 Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
#7 2.253 sure you have python3-full installed.
#7 2.253
#7 2.253 If you wish to install a non-Debian packaged Python application,
#7 2.253 it may be easiest to use pipx install xyz, which will manage a
#7 2.253 virtual environment for you. Make sure you have pipx installed.
#7 2.253
#7 2.253 See /usr/share/doc/python3.13/README.venv for more information.
#7 2.253
#7 2.253 note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
#7 2.253 hint: See PEP 668 for the detailed specification.
#7 2.428 error: externally-managed-environment
#7 2.428
#7 2.428 × This environment is externally managed
#7 2.428 ╰─> To install Python packages system-wide, try apt install
#7 2.428 python3-xyz, where xyz is the package you are trying to
#7 2.428 install.
#7 2.428
#7 2.428 If you wish to install a non-Debian-packaged Python package,
#7 2.428 create a virtual environment using python3 -m venv path/to/venv.
#7 2.428 Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
#7 2.428 sure you have python3-full installed.
#7 2.428
#7 2.428 If you wish to install a non-Debian packaged Python application,
#7 2.428 it may be easiest to use pipx install xyz, which will manage a
#7 2.428 virtual environment for you. Make sure you have pipx installed.
#7 2.428
#7 2.428 See /usr/share/doc/python3.13/README.venv for more information.
#7 2.428
#7 2.428 note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
#7 2.428 hint: See PEP 668 for the detailed specification.
#7 2.564 error: externally-managed-environment
#7 2.564
#7 2.564 × This environment is externally managed
#7 2.564 ╰─> To install Python packages system-wide, try apt install
#7 2.564 python3-xyz, where xyz is the package you are trying to
#7 2.564 install.
#7 2.564
#7 2.564 If you wish to install a non-Debian-packaged Python package,
#7 2.564 create a virtual environment using python3 -m venv path/to/venv.
#7 2.564 Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
#7 2.564 sure you have python3-full installed.
#7 2.564
#7 2.564 If you wish to install a non-Debian packaged Python application,
#7 2.564 it may be easiest to use pipx install xyz, which will manage a
#7 2.564 virtual environment for you. Make sure you have pipx installed.
#7 2.564
#7 2.564 See /usr/share/doc/python3.13/README.venv for more information.
#7 2.564
#7 2.564 note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
#7 2.564 hint: See PEP 668 for the detailed specification.
#7 2.698 error: externally-managed-environment
#7 2.698
#7 2.698 × This environment is externally managed
#7 2.698 ╰─> To install Python packages system-wide, try apt install
#7 2.698 python3-xyz, where xyz is the package you are trying to
#7 2.698 install.
#7 2.698
#7 2.698 If you wish to install a non-Debian-packaged Python package,
#7 2.698 create a virtual environment using python3 -m venv path/to/venv.
#7 2.698 Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
#7 2.698 sure you have python3-full installed.
#7 2.698
#7 2.698 If you wish to install a non-Debian packaged Python application,
#7 2.698 it may be easiest to use pipx install xyz, which will manage a
#7 2.698 virtual environment for you. Make sure you have pipx installed.
#7 2.698
#7 2.698 See /usr/share/doc/python3.13/README.venv for more information.
#7 2.698
#7 2.698 note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
#7 2.698 hint: See PEP 668 for the detailed specification.
#7 2.836 error: externally-managed-environment
#7 2.836
#7 2.836 × This environment is externally managed
#7 2.836 ╰─> To install Python packages system-wide, try apt install
#7 2.836 python3-xyz, where xyz is the package you are trying to
#7 2.836 install.
#7 2.836
#7 2.836 If you wish to install a non-Debian-packaged Python package,
#7 2.836 create a virtual environment using python3 -m venv path/to/venv.
#7 2.836 Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
#7 2.836 sure you have python3-full installed.
#7 2.836
#7 2.836 If you wish to install a non-Debian packaged Python application,
#7 2.836 it may be easiest to use pipx install xyz, which will manage a
#7 2.836 virtual environment for you. Make sure you have pipx installed.
#7 2.836
#7 2.836 See /usr/share/doc/python3.13/README.venv for more information.
#7 2.836
#7 2.836 note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
#7 2.836 hint: See PEP 668 for the detailed specification.
#7 2.972 error: externally-managed-environment
#7 2.972
#7 2.972 × This environment is externally managed
#7 2.972 ╰─> To install Python packages system-wide, try apt install
#7 2.972 python3-xyz, where xyz is the package you are trying to
#7 2.972 install.
#7 2.972
#7 2.972 If you wish to install a non-Debian-packaged Python package,
#7 2.972 create a virtual environment using python3 -m venv path/to/venv.
#7 2.972 Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
#7 2.972 sure you have python3-full installed.
#7 2.972
#7 2.972 If you wish to install a non-Debian packaged Python application,
#7 2.972 it may be easiest to use pipx install xyz, which will manage a
#7 2.972 virtual environment for you. Make sure you have pipx installed.
#7 2.972
#7 2.972 See /usr/share/doc/python3.13/README.venv for more information.
#7 2.972
#7 2.972 note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
#7 2.972 hint: See PEP 668 for the detailed specification.
#7 3.102 error: externally-managed-environment
#7 3.102
#7 3.102 × This environment is externally managed
#7 3.102 ╰─> To install Python packages system-wide, try apt install
#7 3.102 python3-xyz, where xyz is the package you are trying to
#7 3.102 install.
#7 3.102
#7 3.102 If you wish to install a non-Debian-packaged Python package,
#7 3.102 create a virtual environment using python3 -m venv path/to/venv.
#7 3.102 Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
#7 3.102 sure you have python3-full installed.
#7 3.102
#7 3.102 If you wish to install a non-Debian packaged Python application,
#7 3.102 it may be easiest to use pipx install xyz, which will manage a
#7 3.102 virtual environment for you. Make sure you have pipx installed.
#7 3.102
#7 3.102 See /usr/share/doc/python3.13/README.venv for more information.
#7 3.102
#7 3.102 note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
#7 3.102 hint: See PEP 668 for the detailed specification.
#7 3.225 error: externally-managed-environment
#7 3.225
#7 3.225 × This environment is externally managed
#7 3.225 ╰─> To install Python packages system-wide, try apt install
#7 3.225 python3-xyz, where xyz is the package you are trying to
#7 3.225 install.
#7 3.225
#7 3.225 If you wish to install a non-Debian-packaged Python package,
#7 3.225 create a virtual environment using python3 -m venv path/to/venv.
#7 3.225 Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
#7 3.225 sure you have python3-full installed.
#7 3.225
#7 3.225 If you wish to install a non-Debian packaged Python application,
#7 3.225 it may be easiest to use pipx install xyz, which will manage a
#7 3.225 virtual environment for you. Make sure you have pipx installed.
#7 3.225
#7 3.225 See /usr/share/doc/python3.13/README.venv for more information.
#7 3.225
#7 3.225 note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
#7 3.225 hint: See PEP 668 for the detailed specification.
#7 3.352 error: externally-managed-environment
#7 3.352
#7 3.352 × This environment is externally managed
#7 3.352 ╰─> To install Python packages system-wide, try apt install
#7 3.352 python3-xyz, where xyz is the package you are trying to
#7 3.352 install.
#7 3.352
#7 3.352 If you wish to install a non-Debian-packaged Python package,
#7 3.352 create a virtual environment using python3 -m venv path/to/venv.
#7 3.352 Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
#7 3.352 sure you have python3-full installed.
#7 3.352
#7 3.352 If you wish to install a non-Debian packaged Python application,
#7 3.352 it may be easiest to use pipx install xyz, which will manage a
#7 3.352 virtual environment for you. Make sure you have pipx installed.
#7 3.352
#7 3.352 See /usr/share/doc/python3.13/README.venv for more information.
#7 3.352
#7 3.352 note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
#7 3.352 hint: See PEP 668 for the detailed specification.
#7 3.477 error: externally-managed-environment
#7 3.477
#7 3.477 × This environment is externally managed
#7 3.477 ╰─> To install Python packages system-wide, try apt install
#7 3.477 python3-xyz, where xyz is the package you are trying to
#7 3.477 install.
#7 3.477
#7 3.477 If you wish to install a non-Debian-packaged Python package,
#7 3.477 create a virtual environment using python3 -m venv path/to/venv.
#7 3.477 Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
#7 3.477 sure you have python3-full installed.
#7 3.477
#7 3.477 If you wish to install a non-Debian packaged Python application,
#7 3.477 it may be easiest to use pipx install xyz, which will manage a
#7 3.477 virtual environment for you. Make sure you have pipx installed.
#7 3.477
#7 3.477 See /usr/share/doc/python3.13/README.venv for more information.
#7 3.477
#7 3.477 note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
#7 3.477 hint: See PEP 668 for the detailed specification.
#7 3.604 error: externally-managed-environment
#7 3.604
#7 3.604 × This environment is externally managed
#7 3.604 ╰─> To install Python packages system-wide, try apt install
#7 3.604 python3-xyz, where xyz is the package you are trying to
#7 3.604 install.
#7 3.604
#7 3.604 If you wish to install a non-Debian-packaged Python package,
#7 3.604 create a virtual environment using python3 -m venv path/to/venv.
#7 3.604 Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
#7 3.604 sure you have python3-full installed.
#7 3.604
#7 3.604 If you wish to install a non-Debian packaged Python application,
#7 3.604 it may be easiest to use pipx install xyz, which will manage a
#7 3.604 virtual environment for you. Make sure you have pipx installed.
#7 3.604
#7 3.604 See /usr/share/doc/python3.13/README.venv for more information.
#7 3.604
#7 3.604 note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
#7 3.604 hint: See PEP 668 for the detailed specification.
#7 3.730 error: externally-managed-environment
#7 3.730
#7 3.730 × This environment is externally managed
#7 3.730 ╰─> To install Python packages system-wide, try apt install
#7 3.730 python3-xyz, where xyz is the package you are trying to
#7 3.730 install.
#7 3.730
#7 3.730 If you wish to install a non-Debian-packaged Python package,
#7 3.730 create a virtual environment using python3 -m venv path/to/venv.
#7 3.730 Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
#7 3.730 sure you have python3-full installed.
#7 3.730
#7 3.730 If you wish to install a non-Debian packaged Python application,
#7 3.730 it may be easiest to use pipx install xyz, which will manage a
#7 3.730 virtual environment for you. Make sure you have pipx installed.
#7 3.730
#7 3.730 See /usr/share/doc/python3.13/README.venv for more information.
#7 3.730
#7 3.730 note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
#7 3.730 hint: See PEP 668 for the detailed specification.
#7 3.867 error: externally-managed-environment
#7 3.867
#7 3.867 × This environment is externally managed
#7 3.867 ╰─> To install Python packages system-wide, try apt install
#7 3.867 python3-xyz, where xyz is the package you are trying to
#7 3.867 install.
#7 3.867
#7 3.867 If you wish to install a non-Debian-packaged Python package,
#7 3.867 create a virtual environment using python3 -m venv path/to/venv.
#7 3.867 Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
#7 3.867 sure you have python3-full installed.
#7 3.867
#7 3.867 If you wish to install a non-Debian packaged Python application,
#7 3.867 it may be easiest to use pipx install xyz, which will manage a
#7 3.867 virtual environment for you. Make sure you have pipx installed.
#7 3.867
#7 3.867 See /usr/share/doc/python3.13/README.venv for more information.
#7 3.867
#7 3.867 note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
#7 3.867 hint: See PEP 668 for the detailed specification.
#7 4.003 error: externally-managed-environment
#7 4.003
#7 4.003 × This environment is externally managed
#7 4.003 ╰─> To install Python packages system-wide, try apt install
#7 4.003 python3-xyz, where xyz is the package you are trying to
#7 4.003 install.
#7 4.003
#7 4.003 If you wish to install a non-Debian-packaged Python package,
#7 4.003 create a virtual environment using python3 -m venv path/to/venv.
#7 4.003 Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
#7 4.003 sure you have python3-full installed.
#7 4.003
#7 4.003 If you wish to install a non-Debian packaged Python application,
#7 4.003 it may be easiest to use pipx install xyz, which will manage a
#7 4.003 virtual environment for you. Make sure you have pipx installed.
#7 4.003
#7 4.003 See /usr/share/doc/python3.13/README.venv for more information.
#7 4.003
#7 4.003 note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
#7 4.003 hint: See PEP 668 for the detailed specification.
#7 4.138 error: externally-managed-environment
#7 4.138
#7 4.138 × This environment is externally managed
#7 4.138 ╰─> To install Python packages system-wide, try apt install
#7 4.138 python3-xyz, where xyz is the package you are trying to
#7 4.138 install.
#7 4.138
#7 4.138 If you wish to install a non-Debian-packaged Python package,
#7 4.138 create a virtual environment using python3 -m venv path/to/venv.
#7 4.138 Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
#7 4.138 sure you have python3-full installed.
#7 4.138
#7 4.138 If you wish to install a non-Debian packaged Python application,
#7 4.138 it may be easiest to use pipx install xyz, which will manage a
#7 4.138 virtual environment for you. Make sure you have pipx installed.
#7 4.138
#7 4.138 See /usr/share/doc/python3.13/README.venv for more information.
#7 4.138
#7 4.138 note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
#7 4.138 hint: See PEP 668 for the detailed specification.
#7 4.273 error: externally-managed-environment
#7 4.273
#7 4.273 × This environment is externally managed
#7 4.273 ╰─> To install Python packages system-wide, try apt install
#7 4.273 python3-xyz, where xyz is the package you are trying to
#7 4.273 install.
#7 4.273
#7 4.273 If you wish to install a non-Debian-packaged Python package,
#7 4.273 create a virtual environment using python3 -m venv path/to/venv.
#7 4.273 Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
#7 4.273 sure you have python3-full installed.
#7 4.273
#7 4.273 If you wish to install a non-Debian packaged Python application,
#7 4.273 it may be easiest to use pipx install xyz, which will manage a
#7 4.273 virtual environment for you. Make sure you have pipx installed.
#7 4.273
#7 4.273 See /usr/share/doc/python3.13/README.venv for more information.
#7 4.273
#7 4.273 note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
#7 4.273 hint: See PEP 668 for the detailed specification.
#7 4.409 error: externally-managed-environment
#7 4.409
#7 4.409 × This environment is externally managed
#7 4.409 ╰─> To install Python packages system-wide, try apt install
#7 4.409 python3-xyz, where xyz is the package you are trying to
#7 4.409 install.
#7 4.409
#7 4.409 If you wish to install a non-Debian-packaged Python package,
#7 4.409 create a virtual environment using python3 -m venv path/to/venv.
#7 4.409 Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
#7 4.409 sure you have python3-full installed.
#7 4.409
#7 4.409 If you wish to install a non-Debian packaged Python application,
#7 4.409 it may be easiest to use pipx install xyz, which will manage a
#7 4.409 virtual environment for you. Make sure you have pipx installed.
#7 4.409
#7 4.409 See /usr/share/doc/python3.13/README.venv for more information.
#7 4.409
#7 4.409 note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
#7 4.409 hint: See PEP 668 for the detailed specification.
#7 4.546 error: externally-managed-environment
#7 4.546
#7 4.546 × This environment is externally managed
#7 4.546 ╰─> To install Python packages system-wide, try apt install
#7 4.546 python3-xyz, where xyz is the package you are trying to
#7 4.546 install.
#7 4.546
#7 4.546 If you wish to install a non-Debian-packaged Python package,
#7 4.546 create a virtual environment using python3 -m venv path/to/venv.
#7 4.546 Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
#7 4.546 sure you have python3-full installed.
#7 4.546
#7 4.546 If you wish to install a non-Debian packaged Python application,
#7 4.546 it may be easiest to use pipx install xyz, which will manage a
#7 4.546 virtual environment for you. Make sure you have pipx installed.
#7 4.546
#7 4.546 See /usr/share/doc/python3.13/README.venv for more information.
#7 4.546
#7 4.546 note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
#7 4.546 hint: See PEP 668 for the detailed specification.
#7 4.682 error: externally-managed-environment
#7 4.682
#7 4.682 × This environment is externally managed
#7 4.682 ╰─> To install Python packages system-wide, try apt install
#7 4.682 python3-xyz, where xyz is the package you are trying to
#7 4.682 install.
#7 4.682
#7 4.682 If you wish to install a non-Debian-packaged Python package,
#7 4.682 create a virtual environment using python3 -m venv path/to/venv.
#7 4.682 Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
#7 4.682 sure you have python3-full installed.
#7 4.682
#7 4.682 If you wish to install a non-Debian packaged Python application,
#7 4.682 it may be easiest to use pipx install xyz, which will manage a
#7 4.682 virtual environment for you. Make sure you have pipx installed.
#7 4.682
#7 4.682 See /usr/share/doc/python3.13/README.venv for more information.
#7 4.682
#7 4.682 note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
#7 4.682 hint: See PEP 668 for the detailed specification.
#7 4.806 error: externally-managed-environment
#7 4.806
#7 4.806 × This environment is externally managed
#7 4.806 ╰─> To install Python packages system-wide, try apt install
#7 4.806 python3-xyz, where xyz is the package you are trying to
#7 4.806 install.
#7 4.806
#7 4.806 If you wish to install a non-Debian-packaged Python package,
#7 4.806 create a virtual environment using python3 -m venv path/to/venv.
#7 4.806 Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
#7 4.806 sure you have python3-full installed.
#7 4.806
#7 4.806 If you wish to install a non-Debian packaged Python application,
#7 4.806 it may be easiest to use pipx install xyz, which will manage a
#7 4.806 virtual environment for you. Make sure you have pipx installed.
#7 4.806
#7 4.806 See /usr/share/doc/python3.13/README.venv for more information.
#7 4.806
#7 4.806 note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
#7 4.806 hint: See PEP 668 for the detailed specification.
#7 4.932 error: externally-managed-environment
#7 4.932
#7 4.932 × This environment is externally managed
#7 4.932 ╰─> To install Python packages system-wide, try apt install
#7 4.932 python3-xyz, where xyz is the package you are trying to
#7 4.932 install.
#7 4.932
#7 4.932 If you wish to install a non-Debian-packaged Python package,
#7 4.932 create a virtual environment using python3 -m venv path/to/venv.
#7 4.932 Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
#7 4.932 sure you have python3-full installed.
#7 4.932
#7 4.932 If you wish to install a non-Debian packaged Python application,
#7 4.932 it may be easiest to use pipx install xyz, which will manage a
#7 4.932 virtual environment for you. Make sure you have pipx installed.
#7 4.932
#7 4.932 See /usr/share/doc/python3.13/README.venv for more information.
#7 4.932
#7 4.932 note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
#7 4.932 hint: See PEP 668 for the detailed specification.
#7 5.068 error: externally-managed-environment
#7 5.068
#7 5.068 × This environment is externally managed
#7 5.068 ╰─> To install Python packages system-wide, try apt install
#7 5.068 python3-xyz, where xyz is the package you are trying to
#7 5.068 install.
#7 5.068
#7 5.068 If you wish to install a non-Debian-packaged Python package,
#7 5.068 create a virtual environment using python3 -m venv path/to/venv.
#7 5.068 Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
#7 5.068 sure you have python3-full installed.
#7 5.068
#7 5.068 If you wish to install a non-Debian packaged Python application,
#7 5.068 it may be easiest to use pipx install xyz, which will manage a
#7 5.068 virtual environment for you. Make sure you have pipx installed.
#7 5.068
#7 5.068 See /usr/share/doc/python3.13/README.venv for more information.
#7 5.068
#7 5.068 note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
#7 5.068 hint: See PEP 668 for the detailed specification.
#7 5.198 error: externally-managed-environment
#7 5.198
#7 5.198 × This environment is externally managed
#7 5.198 ╰─> To install Python packages system-wide, try apt install
#7 5.198 python3-xyz, where xyz is the package you are trying to
#7 5.198 install.
#7 5.198
#7 5.198 If you wish to install a non-Debian-packaged Python package,
#7 5.198 create a virtual environment using python3 -m venv path/to/venv.
#7 5.198 Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
#7 5.198 sure you have python3-full installed.
#7 5.198
#7 5.198 If you wish to install a non-Debian packaged Python application,
#7 5.198 it may be easiest to use pipx install xyz, which will manage a
#7 5.198 virtual environment for you. Make sure you have pipx installed.
#7 5.198
#7 5.198 See /usr/share/doc/python3.13/README.venv for more information.
#7 5.198
#7 5.198 note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
#7 5.198 hint: See PEP 668 for the detailed specification.
#7 5.324 error: externally-managed-environment
#7 5.324
#7 5.324 × This environment is externally managed
#7 5.324 ╰─> To install Python packages system-wide, try apt install
#7 5.324 python3-xyz, where xyz is the package you are trying to
#7 5.324 install.
#7 5.324
#7 5.324 If you wish to install a non-Debian-packaged Python package,
#7 5.324 create a virtual environment using python3 -m venv path/to/venv.
#7 5.324 Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
#7 5.324 sure you have python3-full installed.
#7 5.324
#7 5.324 If you wish to install a non-Debian packaged Python application,
#7 5.324 it may be easiest to use pipx install xyz, which will manage a
#7 5.324 virtual environment for you. Make sure you have pipx installed.
#7 5.324
#7 5.324 See /usr/share/doc/python3.13/README.venv for more information.
#7 5.324
#7 5.324 note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
#7 5.324 hint: See PEP 668 for the detailed specification.
#7 5.451 error: externally-managed-environment
#7 5.451
#7 5.451 × This environment is externally managed
#7 5.451 ╰─> To install Python packages system-wide, try apt install
#7 5.451 python3-xyz, where xyz is the package you are trying to
#7 5.451 install.
#7 5.451
#7 5.451 If you wish to install a non-Debian-packaged Python package,
#7 5.451 create a virtual environment using python3 -m venv path/to/venv.
#7 5.451 Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
#7 5.451 sure you have python3-full installed.
#7 5.451
#7 5.451 If you wish to install a non-Debian packaged Python application,
#7 5.451 it may be easiest to use pipx install xyz, which will manage a
#7 5.451 virtual environment for you. Make sure you have pipx installed.
#7 5.451
#7 5.451 See /usr/share/doc/python3.13/README.venv for more information.
#7 5.451
#7 5.451 note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
#7 5.451 hint: See PEP 668 for the detailed specification.
#7 5.575 error: externally-managed-environment
#7 5.575
#7 5.575 × This environment is externally managed
#7 5.575 ╰─> To install Python packages system-wide, try apt install
#7 5.575 python3-xyz, where xyz is the package you are trying to
#7 5.575 install.
#7 5.575
#7 5.575 If you wish to install a non-Debian-packaged Python package,
#7 5.575 create a virtual environment using python3 -m venv path/to/venv.
#7 5.575 Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
#7 5.575 sure you have python3-full installed.
#7 5.575
#7 5.575 If you wish to install a non-Debian packaged Python application,
#7 5.575 it may be easiest to use pipx install xyz, which will manage a
#7 5.575 virtual environment for you. Make sure you have pipx installed.
#7 5.575
#7 5.575 See /usr/share/doc/python3.13/README.venv for more information.
#7 5.575
#7 5.575 note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
#7 5.575 hint: See PEP 668 for the detailed specification.
#7 5.701 error: externally-managed-environment
#7 5.701
#7 5.701 × This environment is externally managed
#7 5.701 ╰─> To install Python packages system-wide, try apt install
#7 5.701 python3-xyz, where xyz is the package you are trying to
#7 5.701 install.
#7 5.701
#7 5.701 If you wish to install a non-Debian-packaged Python package,
#7 5.701 create a virtual environment using python3 -m venv path/to/venv.
#7 5.701 Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
#7 5.701 sure you have python3-full installed.
#7 5.701
#7 5.701 If you wish to install a non-Debian packaged Python application,
#7 5.701 it may be easiest to use pipx install xyz, which will manage a
#7 5.701 virtual environment for you. Make sure you have pipx installed.
#7 5.701
#7 5.701 See /usr/share/doc/python3.13/README.venv for more information.
#7 5.701
#7 5.701 note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
#7 5.701 hint: See PEP 668 for the detailed specification.
#7 5.828 error: externally-managed-environment
#7 5.828
#7 5.828 × This environment is externally managed
#7 5.828 ╰─> To install Python packages system-wide, try apt install
#7 5.828 python3-xyz, where xyz is the package you are trying to
#7 5.828 install.
#7 5.828
#7 5.828 If you wish to install a non-Debian-packaged Python package,
#7 5.828 create a virtual environment using python3 -m venv path/to/venv.
#7 5.828 Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
#7 5.828 sure you have python3-full installed.
#7 5.828
#7 5.828 If you wish to install a non-Debian packaged Python application,
#7 5.828 it may be easiest to use pipx install xyz, which will manage a
#7 5.828 virtual environment for you. Make sure you have pipx installed.
#7 5.828
#7 5.828 See /usr/share/doc/python3.13/README.venv for more information.
#7 5.828
#7 5.828 note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
#7 5.828 hint: See PEP 668 for the detailed specification.
#7 5.960 error: externally-managed-environment
#7 5.960
#7 5.960 × This environment is externally managed
#7 5.960 ╰─> To install Python packages system-wide, try apt install
#7 5.960 python3-xyz, where xyz is the package you are trying to
#7 5.960 install.
#7 5.960
#7 5.960 If you wish to install a non-Debian-packaged Python package,
#7 5.960 create a virtual environment using python3 -m venv path/to/venv.
#7 5.960 Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
#7 5.960 sure you have python3-full installed.
#7 5.960
#7 5.960 If you wish to install a non-Debian packaged Python application,
#7 5.960 it may be easiest to use pipx install xyz, which will manage a
#7 5.960 virtual environment for you. Make sure you have pipx installed.
#7 5.960
#7 5.960 See /usr/share/doc/python3.13/README.venv for more information.
#7 5.960
#7 5.960 note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
#7 5.960 hint: See PEP 668 for the detailed specification.
#7 6.101 error: externally-managed-environment
#7 6.101
#7 6.101 × This environment is externally managed
#7 6.101 ╰─> To install Python packages system-wide, try apt install
#7 6.101 python3-xyz, where xyz is the package you are trying to
#7 6.101 install.
#7 6.101
#7 6.101 If you wish to install a non-Debian-packaged Python package,
#7 6.101 create a virtual environment using python3 -m venv path/to/venv.
#7 6.101 Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
#7 6.101 sure you have python3-full installed.
#7 6.101
#7 6.101 If you wish to install a non-Debian packaged Python application,
#7 6.101 it may be easiest to use pipx install xyz, which will manage a
#7 6.101 virtual environment for you. Make sure you have pipx installed.
#7 6.101
#7 6.101 See /usr/share/doc/python3.13/README.venv for more information.
#7 6.101
#7 6.101 note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
#7 6.101 hint: See PEP 668 for the detailed specification.
#7 6.251 error: externally-managed-environment
#7 6.251
#7 6.251 × This environment is externally managed
#7 6.251 ╰─> To install Python packages system-wide, try apt install
#7 6.251 python3-xyz, where xyz is the package you are trying to
#7 6.251 install.
#7 6.251
#7 6.251 If you wish to install a non-Debian-packaged Python package,
#7 6.251 create a virtual environment using python3 -m venv path/to/venv.
#7 6.251 Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
#7 6.251 sure you have python3-full installed.
#7 6.251
#7 6.251 If you wish to install a non-Debian packaged Python application,
#7 6.251 it may be easiest to use pipx install xyz, which will manage a
#7 6.251 virtual environment for you. Make sure you have pipx installed.
#7 6.251
#7 6.251 See /usr/share/doc/python3.13/README.venv for more information.
#7 6.251
#7 6.251 note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
#7 6.251 hint: See PEP 668 for the detailed specification.
#7 6.398 error: externally-managed-environment
#7 6.398
#7 6.398 × This environment is externally managed
#7 6.398 ╰─> To install Python packages system-wide, try apt install
#7 6.398 python3-xyz, where xyz is the package you are trying to
#7 6.398 install.
#7 6.398
#7 6.398 If you wish to install a non-Debian-packaged Python package,
#7 6.398 create a virtual environment using python3 -m venv path/to/venv.
#7 6.398 Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
#7 6.398 sure you have python3-full installed.
#7 6.398
#7 6.398 If you wish to install a non-Debian packaged Python application,
#7 6.398 it may be easiest to use pipx install xyz, which will manage a
#7 6.398 virtual environment for you. Make sure you have pipx installed.
#7 6.398
#7 6.398 See /usr/share/doc/python3.13/README.venv for more information.
#7 6.398
#7 6.398 note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
#7 6.398 hint: See PEP 668 for the detailed specification.
#7 6.546 error: externally-managed-environment
#7 6.546
#7 6.546 × This environment is externally managed
#7 6.546 ╰─> To install Python packages system-wide, try apt install
#7 6.546 python3-xyz, where xyz is the package you are trying to
#7 6.546 install.
#7 6.546
#7 6.546 If you wish to install a non-Debian-packaged Python package,
#7 6.546 create a virtual environment using python3 -m venv path/to/venv.
#7 6.546 Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
#7 6.546 sure you have python3-full installed.
#7 6.546
#7 6.546 If you wish to install a non-Debian packaged Python application,
#7 6.546 it may be easiest to use pipx install xyz, which will manage a
#7 6.546 virtual environment for you. Make sure you have pipx installed.
#7 6.546
#7 6.546 See /usr/share/doc/python3.13/README.venv for more information.