-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLOG_FILE
More file actions
1144 lines (1124 loc) · 216 KB
/
LOG_FILE
File metadata and controls
1144 lines (1124 loc) · 216 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
2023-06-23T17:04:12,179 Using pip 22.0.2 from /usr/lib/python3/dist-packages/pip (python 3.10)
2023-06-23T17:04:12,179 Defaulting to user installation because normal site-packages is not writeable
2023-06-23T17:04:12,301 Created temporary directory: /tmp/pip-ephem-wheel-cache-sh9_g3fc
2023-06-23T17:04:12,301 Created temporary directory: /tmp/pip-req-tracker-71mf95oy
2023-06-23T17:04:12,301 Initialized build tracking at /tmp/pip-req-tracker-71mf95oy
2023-06-23T17:04:12,301 Created build tracker: /tmp/pip-req-tracker-71mf95oy
2023-06-23T17:04:12,301 Entered build tracker: /tmp/pip-req-tracker-71mf95oy
2023-06-23T17:04:12,301 Created temporary directory: /tmp/pip-install-tym_t1xj
2023-06-23T17:04:12,308 Looking in links: https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html
2023-06-23T17:04:12,309 Requirement already satisfied: pyg_lib in /home/ssafa013/.local/lib/python3.10/site-packages (0.2.0+pt20cu118)
2023-06-23T17:04:12,310 Requirement already satisfied: torch_scatter in /home/ssafa013/.local/lib/python3.10/site-packages (2.1.1+pt20cu118)
2023-06-23T17:04:12,310 Requirement already satisfied: torch_sparse in /home/ssafa013/.local/lib/python3.10/site-packages (0.6.17+pt20cu118)
2023-06-23T17:04:12,311 Requirement already satisfied: torch_cluster in /home/ssafa013/.local/lib/python3.10/site-packages (1.6.1+pt20cu118)
2023-06-23T17:04:12,311 Requirement already satisfied: torch_spline_conv in /home/ssafa013/.local/lib/python3.10/site-packages (1.2.2+pt20cu118)
2023-06-23T17:04:12,321 Requirement already satisfied: scipy in /usr/lib/python3/dist-packages (from torch_sparse) (1.8.0)
2023-06-23T17:04:12,328 Created temporary directory: /tmp/pip-unpack-lgq6d7z1
2023-06-23T17:04:13,037 Removed build tracker: '/tmp/pip-req-tracker-71mf95oy'
2023-06-23T17:04:42,434 Using pip 22.0.2 from /usr/lib/python3/dist-packages/pip (python 3.10)
2023-06-23T17:04:42,435 Defaulting to user installation because normal site-packages is not writeable
2023-06-23T17:04:42,546 Created temporary directory: /tmp/pip-ephem-wheel-cache-oapsmhc3
2023-06-23T17:04:42,546 Created temporary directory: /tmp/pip-req-tracker-kc18zou0
2023-06-23T17:04:42,546 Initialized build tracking at /tmp/pip-req-tracker-kc18zou0
2023-06-23T17:04:42,546 Created build tracker: /tmp/pip-req-tracker-kc18zou0
2023-06-23T17:04:42,546 Entered build tracker: /tmp/pip-req-tracker-kc18zou0
2023-06-23T17:04:42,546 Created temporary directory: /tmp/pip-install-d5bxh281
2023-06-23T17:04:42,552 Looking in links: https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html
2023-06-23T17:04:42,553 2 location(s) to search for versions of pyg-lib:
2023-06-23T17:04:42,553 * https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html
2023-06-23T17:04:42,553 * https://pypi.org/simple/pyg-lib/
2023-06-23T17:04:42,553 Fetching project page and analyzing links: https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html
2023-06-23T17:04:42,554 Getting page https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html
2023-06-23T17:04:42,555 Looking up "https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html" in the cache
2023-06-23T17:04:42,555 Request header has "max_age" as 0, cache bypassed
2023-06-23T17:04:42,555 Starting new HTTPS connection (1): pytorch-geometric.com:443
2023-06-23T17:04:42,845 https://pytorch-geometric.com:443 "GET /whl/torch-2.0.1%2Bcu118.html HTTP/1.1" 304 0
2023-06-23T17:04:42,854 Found link https://data.pyg.org/whl/torch-2.0.0%2Bcu118/pyg_lib-0.2.0%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html), version: 0.2.0+pt20cu118
2023-06-23T17:04:42,854 Skipping link: none of the wheel's tags (cp311-cp311-linux_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/pyg_lib-0.2.0%2Bpt20cu118-cp311-cp311-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-23T17:04:42,854 Skipping link: none of the wheel's tags (cp38-cp38-linux_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/pyg_lib-0.2.0%2Bpt20cu118-cp38-cp38-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-23T17:04:42,855 Skipping link: none of the wheel's tags (cp39-cp39-linux_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/pyg_lib-0.2.0%2Bpt20cu118-cp39-cp39-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-23T17:04:42,855 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-23T17:04:42,855 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp310-cp310-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-23T17:04:42,855 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp311-cp311-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-23T17:04:42,855 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp311-cp311-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-23T17:04:42,855 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp38-cp38-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-23T17:04:42,855 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp38-cp38-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-23T17:04:42,855 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp39-cp39-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-23T17:04:42,855 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp39-cp39-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-23T17:04:42,855 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-23T17:04:42,855 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp310-cp310-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-23T17:04:42,855 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp311-cp311-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-23T17:04:42,855 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp311-cp311-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-23T17:04:42,856 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp38-cp38-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-23T17:04:42,856 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp38-cp38-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-23T17:04:42,856 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp39-cp39-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-23T17:04:42,856 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp39-cp39-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-23T17:04:42,856 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-23T17:04:42,856 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp310-cp310-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-23T17:04:42,856 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp311-cp311-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-23T17:04:42,856 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp311-cp311-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-23T17:04:42,856 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp38-cp38-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-23T17:04:42,856 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp38-cp38-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-23T17:04:42,856 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp39-cp39-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-23T17:04:42,856 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp39-cp39-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-23T17:04:42,856 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-23T17:04:42,857 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp310-cp310-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-23T17:04:42,857 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp311-cp311-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-23T17:04:42,857 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp311-cp311-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-23T17:04:42,857 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp38-cp38-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-23T17:04:42,857 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp38-cp38-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-23T17:04:42,857 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp39-cp39-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-23T17:04:42,857 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp39-cp39-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-23T17:04:42,857 Fetching project page and analyzing links: https://pypi.org/simple/pyg-lib/
2023-06-23T17:04:42,857 Getting page https://pypi.org/simple/pyg-lib/
2023-06-23T17:04:42,858 Found index url https://pypi.org/simple
2023-06-23T17:04:42,858 Looking up "https://pypi.org/simple/pyg-lib/" in the cache
2023-06-23T17:04:42,858 Request header has "max_age" as 0, cache bypassed
2023-06-23T17:04:42,858 Starting new HTTPS connection (1): pypi.org:443
2023-06-23T17:04:42,995 https://pypi.org:443 "GET /simple/pyg-lib/ HTTP/1.1" 404 13
2023-06-23T17:04:42,996 Status code 404 not in (200, 203, 300, 301, 308)
2023-06-23T17:04:42,996 Could not fetch URL https://pypi.org/simple/pyg-lib/: 404 Client Error: Not Found for url: https://pypi.org/simple/pyg-lib/ - skipping
2023-06-23T17:04:42,996 Skipping link: unsupported archive format: .html: https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html
2023-06-23T17:04:42,996 Skipping link: not a file: https://pypi.org/simple/pyg-lib/
2023-06-23T17:04:42,996 Given no hashes to check 1 links for project 'pyg-lib': discarding no candidates
2023-06-23T17:04:43,001 Collecting pyg_lib
2023-06-23T17:04:43,002 Created temporary directory: /tmp/pip-unpack-199thaq4
2023-06-23T17:04:43,003 Looking up "https://data.pyg.org/whl/torch-2.0.0%2Bcu118/pyg_lib-0.2.0%2Bpt20cu118-cp310-cp310-linux_x86_64.whl" in the cache
2023-06-23T17:04:43,008 Current age based on date: 221
2023-06-23T17:04:43,013 Starting new HTTPS connection (1): data.pyg.org:443
2023-06-23T17:04:43,148 https://data.pyg.org:443 "GET /whl/torch-2.0.0%2Bcu118/pyg_lib-0.2.0%2Bpt20cu118-cp310-cp310-linux_x86_64.whl HTTP/1.1" 304 0
2023-06-23T17:04:43,157 Using cached https://data.pyg.org/whl/torch-2.0.0%2Bcu118/pyg_lib-0.2.0%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (1.8 MB)
2023-06-23T17:04:43,160 Added pyg_lib from https://data.pyg.org/whl/torch-2.0.0%2Bcu118/pyg_lib-0.2.0%2Bpt20cu118-cp310-cp310-linux_x86_64.whl to build tracker '/tmp/pip-req-tracker-kc18zou0'
2023-06-23T17:04:43,160 Removed pyg_lib from https://data.pyg.org/whl/torch-2.0.0%2Bcu118/pyg_lib-0.2.0%2Bpt20cu118-cp310-cp310-linux_x86_64.whl from build tracker '/tmp/pip-req-tracker-kc18zou0'
2023-06-23T17:04:43,162 2 location(s) to search for versions of torch-scatter:
2023-06-23T17:04:43,162 * https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html
2023-06-23T17:04:43,162 * https://pypi.org/simple/torch-scatter/
2023-06-23T17:04:43,162 Fetching project page and analyzing links: https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html
2023-06-23T17:04:43,162 Getting page https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html
2023-06-23T17:04:43,163 Looking up "https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html" in the cache
2023-06-23T17:04:43,163 Request header has "max_age" as 0, cache bypassed
2023-06-23T17:04:43,217 https://pytorch-geometric.com:443 "GET /whl/torch-2.0.1%2Bcu118.html HTTP/1.1" 304 0
2023-06-23T17:04:43,218 Skipping link: wrong project name (not torch-scatter): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/pyg_lib-0.2.0%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-23T17:04:43,219 Found link https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html), version: 2.1.1+pt20cu118
2023-06-23T17:04:43,220 Fetching project page and analyzing links: https://pypi.org/simple/torch-scatter/
2023-06-23T17:04:43,220 Getting page https://pypi.org/simple/torch-scatter/
2023-06-23T17:04:43,220 Found index url https://pypi.org/simple
2023-06-23T17:04:43,221 Looking up "https://pypi.org/simple/torch-scatter/" in the cache
2023-06-23T17:04:43,221 Request header has "max_age" as 0, cache bypassed
2023-06-23T17:04:43,227 https://pypi.org:443 "GET /simple/torch-scatter/ HTTP/1.1" 304 0
2023-06-23T17:04:43,230 Found link https://files.pythonhosted.org/packages/29/96/566ac314e796d4b07209a3b88cc7a8d2e8582d55819e33f72e6c0e8d8216/torch_scatter-0.3.0.tar.gz#sha256=9e5e5a6efa4ef45f584e8611f83690d799370dd122b862646751ae112b685b50 (from https://pypi.org/simple/torch-scatter/), version: 0.3.0
2023-06-23T17:04:43,230 Found link https://files.pythonhosted.org/packages/6a/b0/ecffacddf573c147c70c6e43ce05d24f007155ce3fb436959d3d2a24da46/torch_scatter-1.0.2.tar.gz#sha256=ccda794c25265b3450206b7fb0bf74f16a0b45f3f72d9547a42e44648a32faee (from https://pypi.org/simple/torch-scatter/), version: 1.0.2
2023-06-23T17:04:43,230 Found link https://files.pythonhosted.org/packages/08/09/07b106f3e74246f4ecf6517013a053b6dd7486c4f889d81f39adc662431f/torch_scatter-1.0.3.tar.gz#sha256=e626993194819ba65cdf89a52fbbb7780569d9e157bc63dbef13ead6b7a33930 (from https://pypi.org/simple/torch-scatter/), version: 1.0.3
2023-06-23T17:04:43,230 Found link https://files.pythonhosted.org/packages/2d/70/df2bc259d9606f00854ca43b6839f9047ec44900563435e0067584c93864/torch_scatter-1.0.4.tar.gz#sha256=ec004d687e47da9d5477407849d815629fc8b571ee87aeeebf6af8ed6f16defc (from https://pypi.org/simple/torch-scatter/), version: 1.0.4
2023-06-23T17:04:43,230 Found link https://files.pythonhosted.org/packages/2f/97/c50a6aeaedc6924180c6f5810d2a7405ce11aa9b82ba4284badad549d665/torch_scatter-1.1.0.tar.gz#sha256=e534cc2ecb2f9d9b559b1513cd411737d26ea5585d1d65ff571fec55f42a49de (from https://pypi.org/simple/torch-scatter/), version: 1.1.0
2023-06-23T17:04:43,231 Found link https://files.pythonhosted.org/packages/91/5f/eb1d3ef3810cb1165859d40db4d9ee6d7f1dfef97d7e5c34010055f43d95/torch_scatter-1.1.1.tar.gz#sha256=9db7f2c0a5cddf6cfde633e33db7c2c94eaab163e9f8edb46460d6414cc97917 (from https://pypi.org/simple/torch-scatter/), version: 1.1.1
2023-06-23T17:04:43,231 Found link https://files.pythonhosted.org/packages/d4/83/67eeea00c2db1959e2ff95d8680dbd756977bfab254bda8658f09dc3bc11/torch_scatter-1.1.2.tar.gz#sha256=766c2476f5da5ffc25fa8e249ccf50f594031cdce3922abb23559e8e3b14337a (from https://pypi.org/simple/torch-scatter/), version: 1.1.2
2023-06-23T17:04:43,231 Found link https://files.pythonhosted.org/packages/07/c0/f7ac424496f4a3bcb31aa993fba29077a6d42fc2624c66e90b58a566a98e/torch_scatter-1.2.0.tar.gz#sha256=3a0259105d07d264c740eec8e4267260a5c144cf55472abd26022fff4fd73281 (from https://pypi.org/simple/torch-scatter/), version: 1.2.0
2023-06-23T17:04:43,231 Found link https://files.pythonhosted.org/packages/24/b7/680c3b392a4b55a0ebfb480aabb0d5c188e94bb21790104175c8cd614947/torch_scatter-1.3.0.tar.gz#sha256=bf7d561b8ef12b39a99f5797c90b989a0ce2c3ee4de74dff3b170f2d8566e1d4 (from https://pypi.org/simple/torch-scatter/), version: 1.3.0
2023-06-23T17:04:43,231 Found link https://files.pythonhosted.org/packages/35/d4/750403a8aa32cdb3d2d05849c6a10e4e0604de5e0cc94b81a0d0d69a75f3/torch_scatter-1.3.1.tar.gz#sha256=54cbad248350165ddc921ded3fe7a69be5d30c6536273a1a3282e375289f86ec (from https://pypi.org/simple/torch-scatter/), version: 1.3.1
2023-06-23T17:04:43,231 Found link https://files.pythonhosted.org/packages/30/d9/1d5fd4d183dabd9e0a1f7008ecf83318432359f4cc27480e3f2212f44d9c/torch_scatter-1.3.2.tar.gz#sha256=890e8f9da2d57431912182960b71bf6c56397de42c2464907a6e9c583164bf06 (from https://pypi.org/simple/torch-scatter/), version: 1.3.2
2023-06-23T17:04:43,231 Found link https://files.pythonhosted.org/packages/b8/c3/8bad887ffa55c86f120ef5ae252dc0e357b3bd956d9fbf45242bacc46290/torch_scatter-1.4.0.tar.gz#sha256=5999ef256154e5a99445118c1a53f95cf0f95ef7b5cd8d3b256101125479cc2e (from https://pypi.org/simple/torch-scatter/), version: 1.4.0
2023-06-23T17:04:43,231 Found link https://files.pythonhosted.org/packages/28/f7/fa4e61587169924203a32416f7835939fdd79994eaa429b4f8ef8f0e07e2/torch_scatter-2.0.2.tar.gz#sha256=49d3059b7be93d3f2c328fdc6daa3a8479e3dc4a50c8247aef913177122db671 (from https://pypi.org/simple/torch-scatter/), version: 2.0.2
2023-06-23T17:04:43,231 Found link https://files.pythonhosted.org/packages/36/2a/ef3d841ec577e2231662ef86af983c6c7c7d509a0e1d9f12949d0218b492/torch_scatter-2.0.3.tar.gz#sha256=1c4b9cb0f6a195c20d8c4b6230d086cae6965b7eb08f80bd2ec050a094b8e563 (from https://pypi.org/simple/torch-scatter/) (requires-python:>=3.6), version: 2.0.3
2023-06-23T17:04:43,232 Found link https://files.pythonhosted.org/packages/98/a9/47cd92673b6ba251240d587815c763baac2099b07bb76fecdb3b7ae5cece/torch_scatter-2.0.4.tar.gz#sha256=db6c9eca919b86f3eb6102dd0e1215af72e39ed3a4e8d142e6a21d3f20d5c244 (from https://pypi.org/simple/torch-scatter/) (requires-python:>=3.6), version: 2.0.4
2023-06-23T17:04:43,232 Found link https://files.pythonhosted.org/packages/01/45/cd93ed3227248773ba8bc4b3beaa04e8bddb127a793a41bad875369951b3/torch_scatter-2.0.5.tar.gz#sha256=148fbe634fb9e9465dbde2ab337138f63650ed8abbac42bb3f565e3fe92e9b2f (from https://pypi.org/simple/torch-scatter/) (requires-python:>=3.6), version: 2.0.5
2023-06-23T17:04:43,232 Found link https://files.pythonhosted.org/packages/91/26/f2f0767a0e72c38d5d17f53117deb8aaafaf58f4ad658cee56cd5158c979/torch_scatter-2.0.6.tar.gz#sha256=2c664656a6c006d5221b2d51ce51eca0bbf39e85a180fdd6d3ad42cb28b5a536 (from https://pypi.org/simple/torch-scatter/) (requires-python:>=3.6), version: 2.0.6
2023-06-23T17:04:43,232 Found link https://files.pythonhosted.org/packages/fa/d1/0bade0c3b9222710528de0458ad48407dab46efd7ad3d4fd1be82b68ac2b/torch_scatter-2.0.7.tar.gz#sha256=369184948c838f756eea10464a3fbf8e103e22dc94d7045dbab85b5748bf85f9 (from https://pypi.org/simple/torch-scatter/) (requires-python:>=3.6), version: 2.0.7
2023-06-23T17:04:43,232 Found link https://files.pythonhosted.org/packages/a9/f0/cc0249cc963e50ea6d00f06a1930f84beebe37cf5ca83fbb50169d7e715a/torch_scatter-2.0.8.tar.gz#sha256=d71aab489b5288a6c96e9f9a7c9e13c54774dcb55a99a40e6cd1aca8be9ef3e6 (from https://pypi.org/simple/torch-scatter/) (requires-python:>=3.6), version: 2.0.8
2023-06-23T17:04:43,232 Found link https://files.pythonhosted.org/packages/1b/a0/6e44e887eb7fff78a9642035fe9662fc22c850a377369a52f308dd553104/torch_scatter-2.0.9.tar.gz#sha256=08f5511d64473badf0a71d156b36dc2b09b9c2f00a7cd373b935b490c477a7f1 (from https://pypi.org/simple/torch-scatter/) (requires-python:>=3.6), version: 2.0.9
2023-06-23T17:04:43,232 Found link https://files.pythonhosted.org/packages/49/f6/2407e1618ec03952a5fe7ebd6e6f7598ede1201ae8b12a96f85f8a03e81e/torch_scatter-2.1.0.tar.gz#sha256=3a7124c2a033552febbdc72407f7d4d8cb6dce465720e84ab831512e81c1d208 (from https://pypi.org/simple/torch-scatter/) (requires-python:>=3.7), version: 2.1.0
2023-06-23T17:04:43,232 Found link https://files.pythonhosted.org/packages/db/ae/3dee934b7118aec8528a6832dbb3cf079e13dd442c4600cae8d29a4f9fea/torch_scatter-2.1.1.tar.gz#sha256=59b6fad2c04f58b4ea46bb56e839edfd421faaa849d5e32ab1290975b9ef1656 (from https://pypi.org/simple/torch-scatter/) (requires-python:>=3.7), version: 2.1.1
2023-06-23T17:04:43,233 Skipping link: not a file: https://pypi.org/simple/torch-scatter/
2023-06-23T17:04:43,233 Given no hashes to check 23 links for project 'torch-scatter': discarding no candidates
2023-06-23T17:04:43,239 Collecting torch_scatter
2023-06-23T17:04:43,239 Created temporary directory: /tmp/pip-unpack-0ate6crh
2023-06-23T17:04:43,240 Looking up "https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl" in the cache
2023-06-23T17:04:43,266 Current age based on date: 221
2023-06-23T17:04:43,391 https://data.pyg.org:443 "GET /whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl HTTP/1.1" 304 0
2023-06-23T17:04:43,438 Using cached https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (10.2 MB)
2023-06-23T17:04:43,459 Added torch_scatter from https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl to build tracker '/tmp/pip-req-tracker-kc18zou0'
2023-06-23T17:04:43,459 Removed torch_scatter from https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl from build tracker '/tmp/pip-req-tracker-kc18zou0'
2023-06-23T17:04:43,461 2 location(s) to search for versions of torch-sparse:
2023-06-23T17:04:43,461 * https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html
2023-06-23T17:04:43,461 * https://pypi.org/simple/torch-sparse/
2023-06-23T17:04:43,461 Fetching project page and analyzing links: https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html
2023-06-23T17:04:43,461 Getting page https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html
2023-06-23T17:04:43,462 Looking up "https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html" in the cache
2023-06-23T17:04:43,462 Request header has "max_age" as 0, cache bypassed
2023-06-23T17:04:43,470 https://pytorch-geometric.com:443 "GET /whl/torch-2.0.1%2Bcu118.html HTTP/1.1" 304 0
2023-06-23T17:04:43,472 Found link https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html), version: 0.6.17+pt20cu118
2023-06-23T17:04:43,473 Fetching project page and analyzing links: https://pypi.org/simple/torch-sparse/
2023-06-23T17:04:43,473 Getting page https://pypi.org/simple/torch-sparse/
2023-06-23T17:04:43,474 Found index url https://pypi.org/simple
2023-06-23T17:04:43,474 Looking up "https://pypi.org/simple/torch-sparse/" in the cache
2023-06-23T17:04:43,474 Request header has "max_age" as 0, cache bypassed
2023-06-23T17:04:43,481 https://pypi.org:443 "GET /simple/torch-sparse/ HTTP/1.1" 304 0
2023-06-23T17:04:43,484 Found link https://files.pythonhosted.org/packages/21/a6/af5865f7bc2dc45ea789ebb35bdf5d84c05e140d7d2ec7e5823d24db176f/torch_sparse-0.1.0.tar.gz#sha256=d774c4b05a96bf09e3c3becd2f48c65ed66b03195a2cfc4992ef57c9a8c6b399 (from https://pypi.org/simple/torch-sparse/), version: 0.1.0
2023-06-23T17:04:43,484 Found link https://files.pythonhosted.org/packages/02/4f/89bcb156022a3960c4db852915c64ea78b4e993e0f8d7a83e60e6819fc11/torch_sparse-0.2.0.tar.gz#sha256=578fdc3522b06c948d43fbc360d0dcde8a89d9a2496ac468592bf3493baedd33 (from https://pypi.org/simple/torch-sparse/), version: 0.2.0
2023-06-23T17:04:43,484 Found link https://files.pythonhosted.org/packages/8f/41/98db80cc9d9345c76445393661ce4dd3e08fc46fb17028e7706612063e4d/torch_sparse-0.2.1.tar.gz#sha256=01346234f0e76103304f8aa1099f22c0904d2fff8b36c5ec0230335149f526bc (from https://pypi.org/simple/torch-sparse/), version: 0.2.1
2023-06-23T17:04:43,484 Found link https://files.pythonhosted.org/packages/73/5b/5b7b6c66148afaa5e2ed8a3e18e109361957d28e67032d92cb282d173f32/torch_sparse-0.2.2.tar.gz#sha256=11e87c0214a4491168f15726ddda6c771b5f34be728f3edbb4add203e46d924d (from https://pypi.org/simple/torch-sparse/), version: 0.2.2
2023-06-23T17:04:43,485 Found link https://files.pythonhosted.org/packages/43/2a/bb2ead5b33c6932937c6c74199ebecd72bd4b3ab224842a50366e5b2af4a/torch_sparse-0.2.3.tar.gz#sha256=47b3f85b0c243d0c98798db722b0f066830f6b8ff9d298a6e2aed0662598e356 (from https://pypi.org/simple/torch-sparse/), version: 0.2.3
2023-06-23T17:04:43,485 Found link https://files.pythonhosted.org/packages/73/72/e374662f6f47d9ac0e082a6d5c18d14e15c52863e89c6bc6957a0d2ed026/torch_sparse-0.2.4.tar.gz#sha256=5cae8b40a5d11b8917e0f4b95034b5842b052f42a089ce59f8c02f2cff00ca55 (from https://pypi.org/simple/torch-sparse/), version: 0.2.4
2023-06-23T17:04:43,485 Found link https://files.pythonhosted.org/packages/b0/0a/2ff678e0d04e524dd2cf990a6202ced8c0ffe3fe6b08e02f25cc9fd27da0/torch_sparse-0.4.0.tar.gz#sha256=bf217539b4f714a1d6fac4d39ace3ad8033871717f44f8f365a2746056b9d805 (from https://pypi.org/simple/torch-sparse/), version: 0.4.0
2023-06-23T17:04:43,485 Found link https://files.pythonhosted.org/packages/c7/3e/aa5449787910283d846a7c739899ccf8c53c914f8a7aee7bc500a32dc091/torch_sparse-0.4.1.tar.gz#sha256=4831fe4b78b86d4dff948d50fec042ef99b98e850495b400189456380ec397d4 (from https://pypi.org/simple/torch-sparse/), version: 0.4.1
2023-06-23T17:04:43,485 Found link https://files.pythonhosted.org/packages/7d/c5/1f73917168aa9816f41e0696f266fa07d0ebfe8d25c3e63a0f08440534b9/torch_sparse-0.4.2.tar.gz#sha256=a652feb1b945995fb863dcbfdaa01de9096d5ed7230380ebf6d262e649eb4123 (from https://pypi.org/simple/torch-sparse/), version: 0.4.2
2023-06-23T17:04:43,485 Found link https://files.pythonhosted.org/packages/08/4e/a268613fa6a92ffbc65b89e66fc8be5590801937185007f0f7bcb75ea21f/torch_sparse-0.4.3.tar.gz#sha256=87b63cb21f091b450271e75d42280c9ef165d61e6ae6dcb983ad2caedfd6eb0f (from https://pypi.org/simple/torch-sparse/), version: 0.4.3
2023-06-23T17:04:43,485 Found link https://files.pythonhosted.org/packages/0e/bf/6242893c898621e7e4756e1ad298e903df6dfae208aec1c32adf8cfd1f7f/torch_sparse-0.4.4.tar.gz#sha256=0c71a15444c56a1117ec200b60aef64121ee5dc8f6f97fbc1ca4c289579d8eb2 (from https://pypi.org/simple/torch-sparse/), version: 0.4.4
2023-06-23T17:04:43,485 Found link https://files.pythonhosted.org/packages/92/80/7137d14dac46d515373d8b3eb47e2565ecfd646ba8658a6a6a1c24e49a2c/torch_sparse-0.5.1.tar.gz#sha256=ab62ffff2c97c5769cdd4aa348ad9b4ed9c4f1f174e155f3845a1864e8771f11 (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.6), version: 0.5.1
2023-06-23T17:04:43,485 Found link https://files.pythonhosted.org/packages/11/17/03bd3a1f056d971e498bd1ad818bbde3dd5409c845ed2ce76186fec65dd2/torch_sparse-0.6.0.tar.gz#sha256=b5c0edc380e51b33e60a97d7580212a7672e5fab11daece50a905deb8e91dfa7 (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.6), version: 0.6.0
2023-06-23T17:04:43,485 Found link https://files.pythonhosted.org/packages/12/9e/66247cbc250e746d06de35c6eb226ec39f4cb4be46adf6ee27527915910b/torch_sparse-0.6.1.tar.gz#sha256=41de6bb39450fc59917c582caa353505d443809af3601c67e4fbaa2284fd1899 (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.6), version: 0.6.1
2023-06-23T17:04:43,485 Found link https://files.pythonhosted.org/packages/dc/65/ee198eae5c517cfc6d05473bf4ec8593830dc61446ffd65fdb7cd3b469ce/torch_sparse-0.6.3.tar.gz#sha256=2d2bb488e14207187f9856d2a9349851e7a3cc37d0f5cf7c7ed930d0fc8c7531 (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.6), version: 0.6.3
2023-06-23T17:04:43,485 Found link https://files.pythonhosted.org/packages/92/d4/7261b5ee3ff529ac3652fda2ad9757c0fb3cde514014a9c26fe71bad38e9/torch_sparse-0.6.4.tar.gz#sha256=8698ef4bb3f9a51b278b5fdd2ed1b2f4389e871c135f6cdf38355f3c96709457 (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.6), version: 0.6.4
2023-06-23T17:04:43,486 Found link https://files.pythonhosted.org/packages/18/0d/a0ab465c6fd30318e8ce2c121424fb09573e46eb16231e6fedb6ddd953f5/torch_sparse-0.6.5.tar.gz#sha256=e457718abdafb65a683a374f17e4bd84bb5d51cdeaa3a1dc364d514f67eaa834 (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.6), version: 0.6.5
2023-06-23T17:04:43,486 Found link https://files.pythonhosted.org/packages/db/d1/968436c29959c321740ee95f781c961f12b2d23f0ecdbdaaf3ccf64ddc94/torch_sparse-0.6.6.tar.gz#sha256=9ee9e76eb2ef144afb82ae512ee768e652c436a38f92e7b90e7d0aa3c6c2814e (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.6), version: 0.6.6
2023-06-23T17:04:43,486 Found link https://files.pythonhosted.org/packages/ce/c0/f5ccc280629765cf1e97b601426cad6170d00603cf9836ba52f85d44ac27/torch_sparse-0.6.7.tar.gz#sha256=f69b2ed35baf2a9853234756a2b19e6f7ce88d2c1f029d1c7ca166d91e1adbd0 (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.6), version: 0.6.7
2023-06-23T17:04:43,486 Found link https://files.pythonhosted.org/packages/3c/dd/f34dce6512a3922948c3ac0cf50cceb2eeafeedd34a278d502eb77d07dc0/torch_sparse-0.6.8.tar.gz#sha256=312fb5ae6e4e575fca4bbc0bd092af85e7679d5b8e53459f24492fc2a073c7b6 (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.6), version: 0.6.8
2023-06-23T17:04:43,486 Found link https://files.pythonhosted.org/packages/9a/86/699eb78ea7ce259da7f9953858ec2a064e4e5f5e6bf7de53aa6c8bb8b9a8/torch_sparse-0.6.9.tar.gz#sha256=089a3200044d0d392a4d0d84803f926da28a44532fe30f4c8d6c34f567680db3 (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.6), version: 0.6.9
2023-06-23T17:04:43,486 Found link https://files.pythonhosted.org/packages/c7/49/c97315cd579a19d4e575ca06dd8f79f43c00c9c38658fbe91116cd7909dd/torch_sparse-0.6.10.tar.gz#sha256=2e2c7a3649d04e19b3b3960c1d7fc0e767017c93587de1e0d6eb7fda613a6b82 (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.6), version: 0.6.10
2023-06-23T17:04:43,486 Found link https://files.pythonhosted.org/packages/5a/81/f66f60ef6ce915ca54a4fcd0c97ec8a1a802312c1774caf329a866ebbf31/torch_sparse-0.6.11.tar.gz#sha256=1d57bc0fc9d9b6cfdc9dcc12017dc371c89c901e5d7a73e6149c8b866eca1267 (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.6), version: 0.6.11
2023-06-23T17:04:43,486 Found link https://files.pythonhosted.org/packages/00/40/208c5b8ae34c89403d9da648c9689465880539d95a4ad570ac9d6f301b72/torch_sparse-0.6.12.tar.gz#sha256=85db85bd45855cde4be093c7e2413b962b21b31151ad7eacd19ca4e2808bced2 (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.6), version: 0.6.12
2023-06-23T17:04:43,486 Found link https://files.pythonhosted.org/packages/ee/44/b4a1d6d7fa67309781005c0e36723dd0bd745fc1a20c9330796055953b10/torch_sparse-0.6.13.tar.gz#sha256=b4896822559f9b47d8b0186d74c94b7449f91db155a57d617fbeae9b722fa1f3 (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.7), version: 0.6.13
2023-06-23T17:04:43,487 Found link https://files.pythonhosted.org/packages/ed/f0/8d198555417336fac1b56c23b50699717cfc743f5d6bd5d1ece59695aa4c/torch_sparse-0.6.14.tar.gz#sha256=36632fa7b219a71d54a6bb245765379ab4d387a694f34ab429a9a9f70879ad66 (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.7), version: 0.6.14
2023-06-23T17:04:43,487 Found link https://files.pythonhosted.org/packages/6d/79/df42a4bf93191ff44d31ba58eb3ec98a02dfb7402fac34852f864c4b3999/torch_sparse-0.6.15.tar.gz#sha256=3a741ae8a7cc19247a44de549fa4d593c4257b5f741e1eb5110b712a14209dd9 (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.7), version: 0.6.15
2023-06-23T17:04:43,487 Found link https://files.pythonhosted.org/packages/88/e8/9e75676a3415d438fdb354b5ee0ffac777eb447fe4924224beef7529ea43/torch_sparse-0.6.16.tar.gz#sha256=7657cfdcac221fb92aa00af7e6032853a7d2cc0d58151d9436485094ab7635ac (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.7), version: 0.6.16
2023-06-23T17:04:43,487 Found link https://files.pythonhosted.org/packages/cb/ff/21d4674bdf232cd7a2bdbbbb04c35ba1cbdf444d4f3331f5d7eb6c5d4a8f/torch_sparse-0.6.17.tar.gz#sha256=06e268dd77f73eb641da8f9383306d7afac6423383c9197b9df120955e2a96bd (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.7), version: 0.6.17
2023-06-23T17:04:43,487 Skipping link: not a file: https://pypi.org/simple/torch-sparse/
2023-06-23T17:04:43,488 Given no hashes to check 30 links for project 'torch-sparse': discarding no candidates
2023-06-23T17:04:43,494 Collecting torch_sparse
2023-06-23T17:04:43,494 Created temporary directory: /tmp/pip-unpack-y1z20x57
2023-06-23T17:04:43,495 Looking up "https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp310-cp310-linux_x86_64.whl" in the cache
2023-06-23T17:04:43,507 Current age based on date: 221
2023-06-23T17:04:43,565 https://data.pyg.org:443 "GET /whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp310-cp310-linux_x86_64.whl HTTP/1.1" 304 0
2023-06-23T17:04:43,584 Using cached https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (4.8 MB)
2023-06-23T17:04:43,591 Added torch_sparse from https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp310-cp310-linux_x86_64.whl to build tracker '/tmp/pip-req-tracker-kc18zou0'
2023-06-23T17:04:43,591 Removed torch_sparse from https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp310-cp310-linux_x86_64.whl from build tracker '/tmp/pip-req-tracker-kc18zou0'
2023-06-23T17:04:43,593 2 location(s) to search for versions of torch-cluster:
2023-06-23T17:04:43,593 * https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html
2023-06-23T17:04:43,593 * https://pypi.org/simple/torch-cluster/
2023-06-23T17:04:43,593 Fetching project page and analyzing links: https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html
2023-06-23T17:04:43,593 Getting page https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html
2023-06-23T17:04:43,594 Looking up "https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html" in the cache
2023-06-23T17:04:43,594 Request header has "max_age" as 0, cache bypassed
2023-06-23T17:04:43,601 https://pytorch-geometric.com:443 "GET /whl/torch-2.0.1%2Bcu118.html HTTP/1.1" 304 0
2023-06-23T17:04:43,602 Found link https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html), version: 1.6.1+pt20cu118
2023-06-23T17:04:43,603 Fetching project page and analyzing links: https://pypi.org/simple/torch-cluster/
2023-06-23T17:04:43,604 Getting page https://pypi.org/simple/torch-cluster/
2023-06-23T17:04:43,604 Found index url https://pypi.org/simple
2023-06-23T17:04:43,604 Looking up "https://pypi.org/simple/torch-cluster/" in the cache
2023-06-23T17:04:43,604 Request header has "max_age" as 0, cache bypassed
2023-06-23T17:04:43,614 https://pypi.org:443 "GET /simple/torch-cluster/ HTTP/1.1" 304 0
2023-06-23T17:04:43,617 Found link https://files.pythonhosted.org/packages/58/77/1ddc3390129653d1e0e1e0c8063d47a2f40abc888d95b4a2fba774e215df/torch_cluster-0.1.1.tar.gz#sha256=f4f64eabc4c380bff9863d3ce9b93b0a65c7ea6f797f9ee053dc74d7d92ea928 (from https://pypi.org/simple/torch-cluster/), version: 0.1.1
2023-06-23T17:04:43,617 Found link https://files.pythonhosted.org/packages/ac/92/c583aabacb052afed67db146662c23625ad861a74140e338996816a879f4/torch_cluster-0.2.3.tar.gz#sha256=43d9840078f962abfced55043d8320f80c7f91aa7f54398b9ad631ee577bbfb1 (from https://pypi.org/simple/torch-cluster/), version: 0.2.3
2023-06-23T17:04:43,618 Found link https://files.pythonhosted.org/packages/6e/9b/493def262b256290ad6913c9f36b774af6f52d9d46d3fee31b77b3803eb0/torch_cluster-0.2.4.tar.gz#sha256=f421986d71a644b72c69551f09df31eb8657203d59d639aac33192192ed675b5 (from https://pypi.org/simple/torch-cluster/), version: 0.2.4
2023-06-23T17:04:43,618 Found link https://files.pythonhosted.org/packages/8a/2c/ddf6e6fc9c4af6c37a20996100cf6a6427accd7939470bc99071d3487753/torch_cluster-1.0.1.tar.gz#sha256=04cf3ad486eff6cc6069e3d1c18a2acd7662169f36d02a13f3a7adaabfc06b91 (from https://pypi.org/simple/torch-cluster/), version: 1.0.1
2023-06-23T17:04:43,618 Found link https://files.pythonhosted.org/packages/87/9d/e488a5186684632e3e0f14eaec125936cf25a3a24552afd26e7bb426d2ee/torch_cluster-1.0.3.tar.gz#sha256=795264f9e9f36eb44aeb28716d68ea93cd6dc7f75c8e05e0d16eb0597ffcd1a6 (from https://pypi.org/simple/torch-cluster/), version: 1.0.3
2023-06-23T17:04:43,618 Found link https://files.pythonhosted.org/packages/7b/95/bca3179ce501792bf268d37f18cc82577c289fa093bfdcfc26e375019da5/torch_cluster-1.1.1.tar.gz#sha256=e919f64153fd97efe958a509a0a558a31bf5f2dbe2deeff09d300e33d3994b14 (from https://pypi.org/simple/torch-cluster/), version: 1.1.1
2023-06-23T17:04:43,618 Found link https://files.pythonhosted.org/packages/36/b0/25ca8b811059e001f1e3285ac3036b6969fb21350e411c6881ba2b9be3c3/torch_cluster-1.1.2.tar.gz#sha256=082c4e71079cd1bed89da4178b3391361fa6aac5ae2edb783c08fed3da5b93c4 (from https://pypi.org/simple/torch-cluster/), version: 1.1.2
2023-06-23T17:04:43,618 Found link https://files.pythonhosted.org/packages/e2/4f/5205f832d3eef871fe71564aa9fb8504a65be5e95be09800e125e224e634/torch_cluster-1.1.3.tar.gz#sha256=d5c80159f91e329bcc95b316a29ecf466257598680b3b5fb2ea137a585037c78 (from https://pypi.org/simple/torch-cluster/), version: 1.1.3
2023-06-23T17:04:43,618 Found link https://files.pythonhosted.org/packages/d0/e1/495ecc73f1e5534ecbedf1a301557d6c9fc93417467e5107fd9ac54fcbfa/torch_cluster-1.1.4.tar.gz#sha256=a298694afe91f146be3921b8c9da06051958b7598c6e69a9af5833a1af56e7f3 (from https://pypi.org/simple/torch-cluster/), version: 1.1.4
2023-06-23T17:04:43,618 Found link https://files.pythonhosted.org/packages/a6/b3/de9c051d1df504d78542d178231f2ae7d08a411c9ca59219028742886947/torch_cluster-1.1.5.tar.gz#sha256=b67d6c89b71e4146dcfa078cc6a201a1647d888441a9f278b30770f91c7978a1 (from https://pypi.org/simple/torch-cluster/), version: 1.1.5
2023-06-23T17:04:43,618 Found link https://files.pythonhosted.org/packages/96/de/9506fa869cf52edc58c2517b41c0ec1c7678c05b95aff000a509e4238765/torch_cluster-1.2.1.tar.gz#sha256=371b438113bcb7cab1b6931740e9194972f0f7349e1d033437a4196d7d693130 (from https://pypi.org/simple/torch-cluster/), version: 1.2.1
2023-06-23T17:04:43,618 Found link https://files.pythonhosted.org/packages/33/b7/05b9ce9afc76f5709efe04d6344fbed09ea217f916f94e63f2fe9659eb62/torch_cluster-1.2.2.tar.gz#sha256=a1e39e16a7ade806a852117fe16fe2b505fd4bc43bc4207f48fecb0f6b2e1f64 (from https://pypi.org/simple/torch-cluster/), version: 1.2.2
2023-06-23T17:04:43,618 Found link https://files.pythonhosted.org/packages/67/19/a0b1e3a7633ced39d9977ce0b98a1b3e343f0772f4090b0a2d421ac5b56d/torch_cluster-1.2.3.tar.gz#sha256=f8a6b5f47bf6a2a396301d0f4ec0733a650f7a5ae84b08b8625408b8979747ea (from https://pypi.org/simple/torch-cluster/), version: 1.2.3
2023-06-23T17:04:43,618 Found link https://files.pythonhosted.org/packages/32/c8/9b3af10be647326dd807bb2fe7ced8ae4c3fd74178dba884621749afc4d7/torch_cluster-1.2.4.tar.gz#sha256=4e5f8c15b28329b269adecadd64917cb5373c6438a5fdf463f633bd4e73c4ae6 (from https://pypi.org/simple/torch-cluster/), version: 1.2.4
2023-06-23T17:04:43,618 Found link https://files.pythonhosted.org/packages/93/f9/89319a7344e5bcda090fb3996c4271b1fda238ad90401a315c9af1ce4137/torch_cluster-1.3.0.tar.gz#sha256=7b0e1b7061bf8c2754d63a66159f47757ce28b072bc37921fbcc59974eb2d342 (from https://pypi.org/simple/torch-cluster/), version: 1.3.0
2023-06-23T17:04:43,618 Found link https://files.pythonhosted.org/packages/6b/3b/a34740494a1b25cb2ef4ed09e5d5ef6bc75be884f6b25bd93a7acdf03134/torch_cluster-1.4.0.tar.gz#sha256=c256d61f20193b104a2f4c610b4ad95fa3cbaeb72b2ae9bf3d254cb3d573e945 (from https://pypi.org/simple/torch-cluster/), version: 1.4.0
2023-06-23T17:04:43,619 Found link https://files.pythonhosted.org/packages/2f/0c/77453228c248e8071d185940ecb3dd9eca3cac180767bde75b2bc05c0c65/torch_cluster-1.4.1.tar.gz#sha256=e7a900d54cb2dc241c84b1da382f358399880c61290f7be72babf98500496494 (from https://pypi.org/simple/torch-cluster/), version: 1.4.1
2023-06-23T17:04:43,619 Found link https://files.pythonhosted.org/packages/33/38/60ad2fcb735123429b3e0b165a19c80c6273d679b01d6550782abcb314e2/torch_cluster-1.4.2.tar.gz#sha256=ed437ec01f431d0f36398cc321524aac27870cc09e7a5a869726af9c15ac354a (from https://pypi.org/simple/torch-cluster/), version: 1.4.2
2023-06-23T17:04:43,619 Found link https://files.pythonhosted.org/packages/7e/30/b315f136648801433ce6b2724fe3bfaae3c0f8a13282aa58d38ad2a8a3db/torch_cluster-1.4.3a1.tar.gz#sha256=680e47ee41a0cec223c179ce3ea2174de48ac6a277eced453ccadf4bdd2f51c9 (from https://pypi.org/simple/torch-cluster/), version: 1.4.3a1
2023-06-23T17:04:43,619 Found link https://files.pythonhosted.org/packages/49/0d/f7151fb6aad5c9b0e032e46c0678e0404870de4add35b0723fc2a5c4af35/torch_cluster-1.4.3.tar.gz#sha256=340eaf9e31a7a0618f2c3d61c480e1d74466c930827f10fee86d11d8c5b85cba (from https://pypi.org/simple/torch-cluster/), version: 1.4.3
2023-06-23T17:04:43,619 Found link https://files.pythonhosted.org/packages/bd/5f/01c5799cd1f81f9956f03a0e1d9a861e020a598dd411d9bd3c3c1dd5b8a4/torch_cluster-1.4.4.tar.gz#sha256=7907f3f270116cb299bdd4f88de497a85b3b34cf127910ffe0a6131e16620123 (from https://pypi.org/simple/torch-cluster/), version: 1.4.4
2023-06-23T17:04:43,619 Found link https://files.pythonhosted.org/packages/c3/70/1d827d6fd1e03bb5ae84852dd0070c6574105c37e7b935284f6e990932db/torch_cluster-1.4.5.tar.gz#sha256=cf5b9363d82173bb26bb966ba93712c3262765a3a4d25c003479732a9260c257 (from https://pypi.org/simple/torch-cluster/), version: 1.4.5
2023-06-23T17:04:43,619 Found link https://files.pythonhosted.org/packages/a6/cf/6f6c79ce98346cc3ef07f835dbf4cf483a37b88e2974733a22bac148ea0e/torch_cluster-1.5.2.tar.gz#sha256=3ab3b77d424d749993482bc79fa673d0e3d444159118a41e37a9fd4a6292d11a (from https://pypi.org/simple/torch-cluster/) (requires-python:>=3.6), version: 1.5.2
2023-06-23T17:04:43,619 Found link https://files.pythonhosted.org/packages/4e/72/df7533bf9362e400399b1438e6a6ecf2ceded65bd5216da148143b43fa83/torch_cluster-1.5.3.tar.gz#sha256=c2484d14f68d1d6f0d302a0ca4811b84cc4c8800a14aef127539629375723f65 (from https://pypi.org/simple/torch-cluster/) (requires-python:>=3.6), version: 1.5.3
2023-06-23T17:04:43,619 Found link https://files.pythonhosted.org/packages/08/8b/b483508812fe2242ddf645605ee720822943877b11f820ece1dba5c40fc8/torch_cluster-1.5.4.tar.gz#sha256=000f217e6bb2ef89e2403b27fe7c4b2c1f7fbacf781790b194f712b46d648a0c (from https://pypi.org/simple/torch-cluster/) (requires-python:>=3.6), version: 1.5.4
2023-06-23T17:04:43,619 Found link https://files.pythonhosted.org/packages/49/6e/85b9cd8bd984d9178b731bbb26e780c576cf64e4643675ac56eb93a9d8de/torch_cluster-1.5.5.tar.gz#sha256=e9ef5d3a9376537275137f33df7d30bac7019311434dd2fa3124f53dda1e06ff (from https://pypi.org/simple/torch-cluster/) (requires-python:>=3.6), version: 1.5.5
2023-06-23T17:04:43,620 Found link https://files.pythonhosted.org/packages/59/1b/a6266f42bbf485eae4b691ec24302c3e7eae3dbf2a34aec3cb57d96a2bf8/torch_cluster-1.5.6.tar.gz#sha256=323ccc48eeb8c66929158d912124997b37116ee5c182077bdf4a25989f4fd3b3 (from https://pypi.org/simple/torch-cluster/) (requires-python:>=3.6), version: 1.5.6
2023-06-23T17:04:43,620 Found link https://files.pythonhosted.org/packages/ff/78/66d8a75aea9d671dc25a7368fd6e86d1e43c4c47c3dd3d68df16dde57837/torch_cluster-1.5.7.tar.gz#sha256=62a3ec1bebadda1a4a2c867203f4c957b9c0b9d11ffb03b40b8ea9f95a0a4d3b (from https://pypi.org/simple/torch-cluster/) (requires-python:>=3.6), version: 1.5.7
2023-06-23T17:04:43,620 Found link https://files.pythonhosted.org/packages/ff/39/6524367aed276171ba66675b25b368c1522e1d35e17b96ee4ff4025e1d98/torch_cluster-1.5.8.tar.gz#sha256=a0a32f63faac40a026ab1e9da31f6babdb4d937e53be40bd1c91d9b5a286eee6 (from https://pypi.org/simple/torch-cluster/) (requires-python:>=3.6), version: 1.5.8
2023-06-23T17:04:43,620 Found link https://files.pythonhosted.org/packages/4b/27/2f38017ae386ba27c13efe6a87eca7c3c58766c3117c86e0fa2c3f7562a9/torch_cluster-1.5.9.tar.gz#sha256=96209e9f3f073c8e7fe91fbf7dd2cdd8655622d14dfc95a7618b4893a658dca5 (from https://pypi.org/simple/torch-cluster/) (requires-python:>=3.6), version: 1.5.9
2023-06-23T17:04:43,620 Found link https://files.pythonhosted.org/packages/12/4a/4c4c8af938bce77ef6737de22d9d4dfc393412730a4f1550d14c696d09b5/torch_cluster-1.6.0.tar.gz#sha256=249c1bd8c33a887b22bf569a59d0868545804032123594dd8c76ba1885859c39 (from https://pypi.org/simple/torch-cluster/) (requires-python:>=3.7), version: 1.6.0
2023-06-23T17:04:43,620 Found link https://files.pythonhosted.org/packages/5f/e8/0e6b8b8a2889b5860da15fa704ff081b3bb7002cd8ec086f5834244ed591/torch_cluster-1.6.1.tar.gz#sha256=a760e0b4ba71b00d9d908bb6f834aa28f055783ee5af9aecc3f3f94853535f72 (from https://pypi.org/simple/torch-cluster/) (requires-python:>=3.7), version: 1.6.1
2023-06-23T17:04:43,620 Skipping link: not a file: https://pypi.org/simple/torch-cluster/
2023-06-23T17:04:43,621 Given no hashes to check 32 links for project 'torch-cluster': discarding no candidates
2023-06-23T17:04:43,627 Collecting torch_cluster
2023-06-23T17:04:43,627 Created temporary directory: /tmp/pip-unpack-hx5qy839
2023-06-23T17:04:43,628 Looking up "https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl" in the cache
2023-06-23T17:04:43,637 Current age based on date: 220
2023-06-23T17:04:43,682 https://data.pyg.org:443 "GET /whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl HTTP/1.1" 304 0
2023-06-23T17:04:43,689 Using cached https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (3.3 MB)
2023-06-23T17:04:43,693 Added torch_cluster from https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl to build tracker '/tmp/pip-req-tracker-kc18zou0'
2023-06-23T17:04:43,693 Removed torch_cluster from https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl from build tracker '/tmp/pip-req-tracker-kc18zou0'
2023-06-23T17:04:43,694 2 location(s) to search for versions of torch-spline-conv:
2023-06-23T17:04:43,694 * https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html
2023-06-23T17:04:43,694 * https://pypi.org/simple/torch-spline-conv/
2023-06-23T17:04:43,694 Fetching project page and analyzing links: https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html
2023-06-23T17:04:43,694 Getting page https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html
2023-06-23T17:04:43,695 Looking up "https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html" in the cache
2023-06-23T17:04:43,695 Request header has "max_age" as 0, cache bypassed
2023-06-23T17:04:43,706 https://pytorch-geometric.com:443 "GET /whl/torch-2.0.1%2Bcu118.html HTTP/1.1" 304 0
2023-06-23T17:04:43,708 Found link https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html), version: 1.2.2+pt20cu118
2023-06-23T17:04:43,709 Fetching project page and analyzing links: https://pypi.org/simple/torch-spline-conv/
2023-06-23T17:04:43,709 Getting page https://pypi.org/simple/torch-spline-conv/
2023-06-23T17:04:43,709 Found index url https://pypi.org/simple
2023-06-23T17:04:43,709 Looking up "https://pypi.org/simple/torch-spline-conv/" in the cache
2023-06-23T17:04:43,709 Request header has "max_age" as 0, cache bypassed
2023-06-23T17:04:43,716 https://pypi.org:443 "GET /simple/torch-spline-conv/ HTTP/1.1" 304 0
2023-06-23T17:04:43,718 Found link https://files.pythonhosted.org/packages/43/48/02fd06eca47d38efc031b34875c2e7453faab7bde7c02b2669957d230693/torch_spline_conv-0.1.0.tar.gz#sha256=b1d7bceecffb4bc394d9f5df57b56fbff95867aeb778588a054e95a6ba5cd610 (from https://pypi.org/simple/torch-spline-conv/), version: 0.1.0
2023-06-23T17:04:43,718 Found link https://files.pythonhosted.org/packages/99/a6/19a54aaaf507960814af5b6ec3d6916497d54a9345d0b64a98764465fddc/torch_spline_conv-1.0.0.tar.gz#sha256=72950ae9cc15dd00d0977ffca115af0e59c10f1dbac33dd800307fef2b5808c3 (from https://pypi.org/simple/torch-spline-conv/), version: 1.0.0
2023-06-23T17:04:43,718 Found link https://files.pythonhosted.org/packages/4a/e9/973d572b69f8fef3b08d86f77312a75ab4c00ffe8d3582ae09b433b34b8a/torch_spline_conv-1.0.1.tar.gz#sha256=6be33fab8402950b2ddc1dec950d0b5d4c6f183bcf53bca2534a03eb4fd5801b (from https://pypi.org/simple/torch-spline-conv/), version: 1.0.1
2023-06-23T17:04:43,718 Found link https://files.pythonhosted.org/packages/bc/ff/4e834a74fd180f87f6f9aedcfd876cca4c6fa706afa31e9541838f6958d1/torch_spline_conv-1.0.3.tar.gz#sha256=a0be3bc9847458ca92146c2da754dbd2f910be426414757256416e507240da88 (from https://pypi.org/simple/torch-spline-conv/), version: 1.0.3
2023-06-23T17:04:43,718 Found link https://files.pythonhosted.org/packages/1b/d2/98328ef2395b70b9795ddbd091398e49e918f8892d1ea8dad869550b684b/torch_spline_conv-1.0.4.tar.gz#sha256=26e2bb0832d45d185f2e7b38569e64e7f70af8ca2a8b05663972f261ba76a978 (from https://pypi.org/simple/torch-spline-conv/), version: 1.0.4
2023-06-23T17:04:43,718 Found link https://files.pythonhosted.org/packages/92/86/f086f96e09654106ad527f4b03ac6188c1299a9fe555fc39c663b155a05a/torch_spline_conv-1.0.5.tar.gz#sha256=fffa87c94703e4c43a46bd8ec149cd6c125586ebd1f3c04fec48d1f6b60a4f3c (from https://pypi.org/simple/torch-spline-conv/), version: 1.0.5
2023-06-23T17:04:43,718 Found link https://files.pythonhosted.org/packages/9a/6d/b34721af4bb907814a41a1e0e5e426c97aee644efef6877ed112bfb3d81c/torch_spline_conv-1.0.6.tar.gz#sha256=a8bd72bac7dc078ddfbf22789c5fcdf159901494c626344d67ad203e7f8c9b1e (from https://pypi.org/simple/torch-spline-conv/), version: 1.0.6
2023-06-23T17:04:43,719 Found link https://files.pythonhosted.org/packages/3c/dd/daa9d0b7b2ede913e573876ae286a58ec296678858f2814ff6d6789b234f/torch_spline_conv-1.1.0.tar.gz#sha256=e6029526205d1f7cb535389bebd81decf0649a20ea6a67688c02bd335a7f9339 (from https://pypi.org/simple/torch-spline-conv/), version: 1.1.0
2023-06-23T17:04:43,719 Found link https://files.pythonhosted.org/packages/5e/77/5420584cdb1514c580722ca4bc482a509105d64b7c70246e9dc4a3e6d3c5/torch_spline_conv-1.1.1.tar.gz#sha256=622e2f3763e41044f6364ff7a4c6a417cb73c7e6a6edec763abd14847863ebd2 (from https://pypi.org/simple/torch-spline-conv/), version: 1.1.1
2023-06-23T17:04:43,719 Found link https://files.pythonhosted.org/packages/b9/8c/b888f63e797af27a9dc50580f82e2630f32b151e2f70b88e47841f9a0132/torch_spline_conv-1.2.0.tar.gz#sha256=b7a1788004f6c6143d47040f2dd7d8a579a0c69a0cb0b5d7537416bf37c082a5 (from https://pypi.org/simple/torch-spline-conv/) (requires-python:>=3.6), version: 1.2.0
2023-06-23T17:04:43,719 Found link https://files.pythonhosted.org/packages/80/f8/4d010376565c59b3c397b1cf103edc4e9b2ed087c2bbd3677f0a92930d75/torch_spline_conv-1.2.1.tar.gz#sha256=364f658e0ecb4c5263a728c2961553e022fc44c11a633d5a1bf986cf169ab438 (from https://pypi.org/simple/torch-spline-conv/) (requires-python:>=3.6), version: 1.2.1
2023-06-23T17:04:43,719 Found link https://files.pythonhosted.org/packages/a0/50/5f80c47bf09b561ded0981b088ab0064424843696aa35b3b83afde421e56/torch_spline_conv-1.2.2.tar.gz#sha256=ed45a81da29f774665dbdd4709d7e534cdf16d2e7006dbd06957f35bd09661b2 (from https://pypi.org/simple/torch-spline-conv/) (requires-python:>=3.7), version: 1.2.2
2023-06-23T17:04:43,719 Skipping link: not a file: https://pypi.org/simple/torch-spline-conv/
2023-06-23T17:04:43,719 Given no hashes to check 13 links for project 'torch-spline-conv': discarding no candidates
2023-06-23T17:04:43,725 Collecting torch_spline_conv
2023-06-23T17:04:43,725 Created temporary directory: /tmp/pip-unpack-czwsb7f2
2023-06-23T17:04:43,726 Looking up "https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp310-cp310-linux_x86_64.whl" in the cache
2023-06-23T17:04:43,727 Current age based on date: 220
2023-06-23T17:04:43,782 https://data.pyg.org:443 "GET /whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp310-cp310-linux_x86_64.whl HTTP/1.1" 304 0
2023-06-23T17:04:43,785 Using cached https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (884 kB)
2023-06-23T17:04:43,786 Added torch_spline_conv from https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp310-cp310-linux_x86_64.whl to build tracker '/tmp/pip-req-tracker-kc18zou0'
2023-06-23T17:04:43,786 Removed torch_spline_conv from https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp310-cp310-linux_x86_64.whl from build tracker '/tmp/pip-req-tracker-kc18zou0'
2023-06-23T17:04:43,794 Requirement already satisfied: scipy in /usr/lib/python3/dist-packages (from torch_sparse) (1.8.0)
2023-06-23T17:04:43,800 Created temporary directory: /tmp/pip-unpack-c9c0lblx
2023-06-23T17:04:44,421 Installing collected packages: torch_spline_conv, torch_sparse, torch_scatter, torch_cluster, pyg_lib
2023-06-23T17:04:44,888 Successfully installed pyg_lib-0.2.0+pt20cu118 torch_cluster-1.6.1+pt20cu118 torch_scatter-2.1.1+pt20cu118 torch_sparse-0.6.17+pt20cu118 torch_spline_conv-1.2.2+pt20cu118
2023-06-23T17:04:44,889 Removed build tracker: '/tmp/pip-req-tracker-kc18zou0'
2023-06-27T16:09:37,047 Using pip 22.0.2 from /usr/lib/python3/dist-packages/pip (python 3.10)
2023-06-27T16:09:37,047 Defaulting to user installation because normal site-packages is not writeable
2023-06-27T16:09:37,184 Created temporary directory: /tmp/pip-ephem-wheel-cache-wkwrhgzv
2023-06-27T16:09:37,184 Created temporary directory: /tmp/pip-req-tracker-tt8b8m_q
2023-06-27T16:09:37,184 Initialized build tracking at /tmp/pip-req-tracker-tt8b8m_q
2023-06-27T16:09:37,185 Created build tracker: /tmp/pip-req-tracker-tt8b8m_q
2023-06-27T16:09:37,185 Entered build tracker: /tmp/pip-req-tracker-tt8b8m_q
2023-06-27T16:09:37,185 Created temporary directory: /tmp/pip-install-sy5hw49b
2023-06-27T16:09:37,192 Looking in links: https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html
2023-06-27T16:09:37,193 2 location(s) to search for versions of pyg-lib:
2023-06-27T16:09:37,193 * https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html
2023-06-27T16:09:37,193 * https://pypi.org/simple/pyg-lib/
2023-06-27T16:09:37,193 Fetching project page and analyzing links: https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html
2023-06-27T16:09:37,194 Getting page https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html
2023-06-27T16:09:37,195 Looking up "https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html" in the cache
2023-06-27T16:09:37,195 Request header has "max_age" as 0, cache bypassed
2023-06-27T16:09:37,195 Starting new HTTPS connection (1): pytorch-geometric.com:443
2023-06-27T16:09:37,551 https://pytorch-geometric.com:443 "GET /whl/torch-2.0.0%2Bcu118.html HTTP/1.1" 200 6517
2023-06-27T16:09:37,552 Updating cache with response from "https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html"
2023-06-27T16:09:37,552 etag object cached for 1209600 seconds
2023-06-27T16:09:37,552 Caching due to etag
2023-06-27T16:09:37,562 Found link https://data.pyg.org/whl/torch-2.0.0%2Bcu118/pyg_lib-0.2.0%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html), version: 0.2.0+pt20cu118
2023-06-27T16:09:37,562 Skipping link: none of the wheel's tags (cp311-cp311-linux_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/pyg_lib-0.2.0%2Bpt20cu118-cp311-cp311-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html)
2023-06-27T16:09:37,562 Skipping link: none of the wheel's tags (cp38-cp38-linux_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/pyg_lib-0.2.0%2Bpt20cu118-cp38-cp38-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html)
2023-06-27T16:09:37,563 Skipping link: none of the wheel's tags (cp39-cp39-linux_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/pyg_lib-0.2.0%2Bpt20cu118-cp39-cp39-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html)
2023-06-27T16:09:37,563 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html)
2023-06-27T16:09:37,563 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp310-cp310-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html)
2023-06-27T16:09:37,563 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp311-cp311-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html)
2023-06-27T16:09:37,563 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp311-cp311-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html)
2023-06-27T16:09:37,563 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp38-cp38-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html)
2023-06-27T16:09:37,563 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp38-cp38-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html)
2023-06-27T16:09:37,563 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp39-cp39-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html)
2023-06-27T16:09:37,563 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp39-cp39-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html)
2023-06-27T16:09:37,563 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html)
2023-06-27T16:09:37,564 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp310-cp310-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html)
2023-06-27T16:09:37,564 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp311-cp311-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html)
2023-06-27T16:09:37,564 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp311-cp311-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html)
2023-06-27T16:09:37,564 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp38-cp38-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html)
2023-06-27T16:09:37,564 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp38-cp38-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html)
2023-06-27T16:09:37,564 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp39-cp39-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html)
2023-06-27T16:09:37,564 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp39-cp39-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html)
2023-06-27T16:09:37,564 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html)
2023-06-27T16:09:37,564 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp310-cp310-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html)
2023-06-27T16:09:37,564 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp311-cp311-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html)
2023-06-27T16:09:37,564 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp311-cp311-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html)
2023-06-27T16:09:37,565 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp38-cp38-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html)
2023-06-27T16:09:37,565 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp38-cp38-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html)
2023-06-27T16:09:37,565 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp39-cp39-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html)
2023-06-27T16:09:37,565 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp39-cp39-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html)
2023-06-27T16:09:37,565 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html)
2023-06-27T16:09:37,565 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp310-cp310-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html)
2023-06-27T16:09:37,565 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp311-cp311-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html)
2023-06-27T16:09:37,565 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp311-cp311-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html)
2023-06-27T16:09:37,565 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp38-cp38-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html)
2023-06-27T16:09:37,565 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp38-cp38-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html)
2023-06-27T16:09:37,566 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp39-cp39-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html)
2023-06-27T16:09:37,566 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp39-cp39-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html)
2023-06-27T16:09:37,566 Fetching project page and analyzing links: https://pypi.org/simple/pyg-lib/
2023-06-27T16:09:37,566 Getting page https://pypi.org/simple/pyg-lib/
2023-06-27T16:09:37,566 Found index url https://pypi.org/simple
2023-06-27T16:09:37,566 Looking up "https://pypi.org/simple/pyg-lib/" in the cache
2023-06-27T16:09:37,566 Request header has "max_age" as 0, cache bypassed
2023-06-27T16:09:37,567 Starting new HTTPS connection (1): pypi.org:443
2023-06-27T16:09:37,721 https://pypi.org:443 "GET /simple/pyg-lib/ HTTP/1.1" 404 13
2023-06-27T16:09:37,722 Status code 404 not in (200, 203, 300, 301, 308)
2023-06-27T16:09:37,722 Could not fetch URL https://pypi.org/simple/pyg-lib/: 404 Client Error: Not Found for url: https://pypi.org/simple/pyg-lib/ - skipping
2023-06-27T16:09:37,722 Skipping link: unsupported archive format: .html: https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html
2023-06-27T16:09:37,722 Skipping link: not a file: https://pypi.org/simple/pyg-lib/
2023-06-27T16:09:37,722 Given no hashes to check 1 links for project 'pyg-lib': discarding no candidates
2023-06-27T16:09:37,729 Collecting pyg_lib
2023-06-27T16:09:37,729 Created temporary directory: /tmp/pip-unpack-rib2wjq1
2023-06-27T16:09:37,730 Looking up "https://data.pyg.org/whl/torch-2.0.0%2Bcu118/pyg_lib-0.2.0%2Bpt20cu118-cp310-cp310-linux_x86_64.whl" in the cache
2023-06-27T16:09:37,736 Current age based on date: 342312
2023-06-27T16:09:37,742 Starting new HTTPS connection (1): data.pyg.org:443
2023-06-27T16:09:37,913 https://data.pyg.org:443 "GET /whl/torch-2.0.0%2Bcu118/pyg_lib-0.2.0%2Bpt20cu118-cp310-cp310-linux_x86_64.whl HTTP/1.1" 304 0
2023-06-27T16:09:37,923 Using cached https://data.pyg.org/whl/torch-2.0.0%2Bcu118/pyg_lib-0.2.0%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (1.8 MB)
2023-06-27T16:09:37,926 Added pyg_lib from https://data.pyg.org/whl/torch-2.0.0%2Bcu118/pyg_lib-0.2.0%2Bpt20cu118-cp310-cp310-linux_x86_64.whl to build tracker '/tmp/pip-req-tracker-tt8b8m_q'
2023-06-27T16:09:37,926 Removed pyg_lib from https://data.pyg.org/whl/torch-2.0.0%2Bcu118/pyg_lib-0.2.0%2Bpt20cu118-cp310-cp310-linux_x86_64.whl from build tracker '/tmp/pip-req-tracker-tt8b8m_q'
2023-06-27T16:09:37,928 2 location(s) to search for versions of torch-scatter:
2023-06-27T16:09:37,928 * https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html
2023-06-27T16:09:37,928 * https://pypi.org/simple/torch-scatter/
2023-06-27T16:09:37,928 Fetching project page and analyzing links: https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html
2023-06-27T16:09:37,928 Getting page https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html
2023-06-27T16:09:37,929 Looking up "https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html" in the cache
2023-06-27T16:09:37,929 Request header has "max_age" as 0, cache bypassed
2023-06-27T16:09:37,947 https://pytorch-geometric.com:443 "GET /whl/torch-2.0.0%2Bcu118.html HTTP/1.1" 304 0
2023-06-27T16:09:37,949 Skipping link: wrong project name (not torch-scatter): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/pyg_lib-0.2.0%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html)
2023-06-27T16:09:37,949 Found link https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html), version: 2.1.1+pt20cu118
2023-06-27T16:09:37,950 Fetching project page and analyzing links: https://pypi.org/simple/torch-scatter/
2023-06-27T16:09:37,950 Getting page https://pypi.org/simple/torch-scatter/
2023-06-27T16:09:37,951 Found index url https://pypi.org/simple
2023-06-27T16:09:37,951 Looking up "https://pypi.org/simple/torch-scatter/" in the cache
2023-06-27T16:09:37,951 Request header has "max_age" as 0, cache bypassed
2023-06-27T16:09:37,961 https://pypi.org:443 "GET /simple/torch-scatter/ HTTP/1.1" 304 0
2023-06-27T16:09:37,964 Found link https://files.pythonhosted.org/packages/29/96/566ac314e796d4b07209a3b88cc7a8d2e8582d55819e33f72e6c0e8d8216/torch_scatter-0.3.0.tar.gz#sha256=9e5e5a6efa4ef45f584e8611f83690d799370dd122b862646751ae112b685b50 (from https://pypi.org/simple/torch-scatter/), version: 0.3.0
2023-06-27T16:09:37,964 Found link https://files.pythonhosted.org/packages/6a/b0/ecffacddf573c147c70c6e43ce05d24f007155ce3fb436959d3d2a24da46/torch_scatter-1.0.2.tar.gz#sha256=ccda794c25265b3450206b7fb0bf74f16a0b45f3f72d9547a42e44648a32faee (from https://pypi.org/simple/torch-scatter/), version: 1.0.2
2023-06-27T16:09:37,964 Found link https://files.pythonhosted.org/packages/08/09/07b106f3e74246f4ecf6517013a053b6dd7486c4f889d81f39adc662431f/torch_scatter-1.0.3.tar.gz#sha256=e626993194819ba65cdf89a52fbbb7780569d9e157bc63dbef13ead6b7a33930 (from https://pypi.org/simple/torch-scatter/), version: 1.0.3
2023-06-27T16:09:37,964 Found link https://files.pythonhosted.org/packages/2d/70/df2bc259d9606f00854ca43b6839f9047ec44900563435e0067584c93864/torch_scatter-1.0.4.tar.gz#sha256=ec004d687e47da9d5477407849d815629fc8b571ee87aeeebf6af8ed6f16defc (from https://pypi.org/simple/torch-scatter/), version: 1.0.4
2023-06-27T16:09:37,964 Found link https://files.pythonhosted.org/packages/2f/97/c50a6aeaedc6924180c6f5810d2a7405ce11aa9b82ba4284badad549d665/torch_scatter-1.1.0.tar.gz#sha256=e534cc2ecb2f9d9b559b1513cd411737d26ea5585d1d65ff571fec55f42a49de (from https://pypi.org/simple/torch-scatter/), version: 1.1.0
2023-06-27T16:09:37,964 Found link https://files.pythonhosted.org/packages/91/5f/eb1d3ef3810cb1165859d40db4d9ee6d7f1dfef97d7e5c34010055f43d95/torch_scatter-1.1.1.tar.gz#sha256=9db7f2c0a5cddf6cfde633e33db7c2c94eaab163e9f8edb46460d6414cc97917 (from https://pypi.org/simple/torch-scatter/), version: 1.1.1
2023-06-27T16:09:37,965 Found link https://files.pythonhosted.org/packages/d4/83/67eeea00c2db1959e2ff95d8680dbd756977bfab254bda8658f09dc3bc11/torch_scatter-1.1.2.tar.gz#sha256=766c2476f5da5ffc25fa8e249ccf50f594031cdce3922abb23559e8e3b14337a (from https://pypi.org/simple/torch-scatter/), version: 1.1.2
2023-06-27T16:09:37,965 Found link https://files.pythonhosted.org/packages/07/c0/f7ac424496f4a3bcb31aa993fba29077a6d42fc2624c66e90b58a566a98e/torch_scatter-1.2.0.tar.gz#sha256=3a0259105d07d264c740eec8e4267260a5c144cf55472abd26022fff4fd73281 (from https://pypi.org/simple/torch-scatter/), version: 1.2.0
2023-06-27T16:09:37,965 Found link https://files.pythonhosted.org/packages/24/b7/680c3b392a4b55a0ebfb480aabb0d5c188e94bb21790104175c8cd614947/torch_scatter-1.3.0.tar.gz#sha256=bf7d561b8ef12b39a99f5797c90b989a0ce2c3ee4de74dff3b170f2d8566e1d4 (from https://pypi.org/simple/torch-scatter/), version: 1.3.0
2023-06-27T16:09:37,965 Found link https://files.pythonhosted.org/packages/35/d4/750403a8aa32cdb3d2d05849c6a10e4e0604de5e0cc94b81a0d0d69a75f3/torch_scatter-1.3.1.tar.gz#sha256=54cbad248350165ddc921ded3fe7a69be5d30c6536273a1a3282e375289f86ec (from https://pypi.org/simple/torch-scatter/), version: 1.3.1
2023-06-27T16:09:37,965 Found link https://files.pythonhosted.org/packages/30/d9/1d5fd4d183dabd9e0a1f7008ecf83318432359f4cc27480e3f2212f44d9c/torch_scatter-1.3.2.tar.gz#sha256=890e8f9da2d57431912182960b71bf6c56397de42c2464907a6e9c583164bf06 (from https://pypi.org/simple/torch-scatter/), version: 1.3.2
2023-06-27T16:09:37,965 Found link https://files.pythonhosted.org/packages/b8/c3/8bad887ffa55c86f120ef5ae252dc0e357b3bd956d9fbf45242bacc46290/torch_scatter-1.4.0.tar.gz#sha256=5999ef256154e5a99445118c1a53f95cf0f95ef7b5cd8d3b256101125479cc2e (from https://pypi.org/simple/torch-scatter/), version: 1.4.0
2023-06-27T16:09:37,965 Found link https://files.pythonhosted.org/packages/28/f7/fa4e61587169924203a32416f7835939fdd79994eaa429b4f8ef8f0e07e2/torch_scatter-2.0.2.tar.gz#sha256=49d3059b7be93d3f2c328fdc6daa3a8479e3dc4a50c8247aef913177122db671 (from https://pypi.org/simple/torch-scatter/), version: 2.0.2
2023-06-27T16:09:37,965 Found link https://files.pythonhosted.org/packages/36/2a/ef3d841ec577e2231662ef86af983c6c7c7d509a0e1d9f12949d0218b492/torch_scatter-2.0.3.tar.gz#sha256=1c4b9cb0f6a195c20d8c4b6230d086cae6965b7eb08f80bd2ec050a094b8e563 (from https://pypi.org/simple/torch-scatter/) (requires-python:>=3.6), version: 2.0.3
2023-06-27T16:09:37,966 Found link https://files.pythonhosted.org/packages/98/a9/47cd92673b6ba251240d587815c763baac2099b07bb76fecdb3b7ae5cece/torch_scatter-2.0.4.tar.gz#sha256=db6c9eca919b86f3eb6102dd0e1215af72e39ed3a4e8d142e6a21d3f20d5c244 (from https://pypi.org/simple/torch-scatter/) (requires-python:>=3.6), version: 2.0.4
2023-06-27T16:09:37,966 Found link https://files.pythonhosted.org/packages/01/45/cd93ed3227248773ba8bc4b3beaa04e8bddb127a793a41bad875369951b3/torch_scatter-2.0.5.tar.gz#sha256=148fbe634fb9e9465dbde2ab337138f63650ed8abbac42bb3f565e3fe92e9b2f (from https://pypi.org/simple/torch-scatter/) (requires-python:>=3.6), version: 2.0.5
2023-06-27T16:09:37,966 Found link https://files.pythonhosted.org/packages/91/26/f2f0767a0e72c38d5d17f53117deb8aaafaf58f4ad658cee56cd5158c979/torch_scatter-2.0.6.tar.gz#sha256=2c664656a6c006d5221b2d51ce51eca0bbf39e85a180fdd6d3ad42cb28b5a536 (from https://pypi.org/simple/torch-scatter/) (requires-python:>=3.6), version: 2.0.6
2023-06-27T16:09:37,966 Found link https://files.pythonhosted.org/packages/fa/d1/0bade0c3b9222710528de0458ad48407dab46efd7ad3d4fd1be82b68ac2b/torch_scatter-2.0.7.tar.gz#sha256=369184948c838f756eea10464a3fbf8e103e22dc94d7045dbab85b5748bf85f9 (from https://pypi.org/simple/torch-scatter/) (requires-python:>=3.6), version: 2.0.7
2023-06-27T16:09:37,966 Found link https://files.pythonhosted.org/packages/a9/f0/cc0249cc963e50ea6d00f06a1930f84beebe37cf5ca83fbb50169d7e715a/torch_scatter-2.0.8.tar.gz#sha256=d71aab489b5288a6c96e9f9a7c9e13c54774dcb55a99a40e6cd1aca8be9ef3e6 (from https://pypi.org/simple/torch-scatter/) (requires-python:>=3.6), version: 2.0.8
2023-06-27T16:09:37,967 Found link https://files.pythonhosted.org/packages/1b/a0/6e44e887eb7fff78a9642035fe9662fc22c850a377369a52f308dd553104/torch_scatter-2.0.9.tar.gz#sha256=08f5511d64473badf0a71d156b36dc2b09b9c2f00a7cd373b935b490c477a7f1 (from https://pypi.org/simple/torch-scatter/) (requires-python:>=3.6), version: 2.0.9
2023-06-27T16:09:37,967 Found link https://files.pythonhosted.org/packages/49/f6/2407e1618ec03952a5fe7ebd6e6f7598ede1201ae8b12a96f85f8a03e81e/torch_scatter-2.1.0.tar.gz#sha256=3a7124c2a033552febbdc72407f7d4d8cb6dce465720e84ab831512e81c1d208 (from https://pypi.org/simple/torch-scatter/) (requires-python:>=3.7), version: 2.1.0
2023-06-27T16:09:37,967 Found link https://files.pythonhosted.org/packages/db/ae/3dee934b7118aec8528a6832dbb3cf079e13dd442c4600cae8d29a4f9fea/torch_scatter-2.1.1.tar.gz#sha256=59b6fad2c04f58b4ea46bb56e839edfd421faaa849d5e32ab1290975b9ef1656 (from https://pypi.org/simple/torch-scatter/) (requires-python:>=3.7), version: 2.1.1
2023-06-27T16:09:37,967 Skipping link: not a file: https://pypi.org/simple/torch-scatter/
2023-06-27T16:09:37,967 Given no hashes to check 23 links for project 'torch-scatter': discarding no candidates
2023-06-27T16:09:37,975 Collecting torch_scatter
2023-06-27T16:09:37,975 Created temporary directory: /tmp/pip-unpack-l9mqasb2
2023-06-27T16:09:37,976 Looking up "https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl" in the cache
2023-06-27T16:09:38,008 Current age based on date: 342312
2023-06-27T16:09:38,143 https://data.pyg.org:443 "GET /whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl HTTP/1.1" 304 0
2023-06-27T16:09:38,206 Using cached https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (10.2 MB)
2023-06-27T16:09:38,225 Added torch_scatter from https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl to build tracker '/tmp/pip-req-tracker-tt8b8m_q'
2023-06-27T16:09:38,225 Removed torch_scatter from https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl from build tracker '/tmp/pip-req-tracker-tt8b8m_q'
2023-06-27T16:09:38,227 2 location(s) to search for versions of torch-sparse:
2023-06-27T16:09:38,227 * https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html
2023-06-27T16:09:38,227 * https://pypi.org/simple/torch-sparse/
2023-06-27T16:09:38,227 Fetching project page and analyzing links: https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html
2023-06-27T16:09:38,227 Getting page https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html
2023-06-27T16:09:38,228 Looking up "https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html" in the cache
2023-06-27T16:09:38,228 Request header has "max_age" as 0, cache bypassed
2023-06-27T16:09:38,236 https://pytorch-geometric.com:443 "GET /whl/torch-2.0.0%2Bcu118.html HTTP/1.1" 304 0
2023-06-27T16:09:38,238 Found link https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html), version: 0.6.17+pt20cu118
2023-06-27T16:09:38,240 Fetching project page and analyzing links: https://pypi.org/simple/torch-sparse/
2023-06-27T16:09:38,240 Getting page https://pypi.org/simple/torch-sparse/
2023-06-27T16:09:38,240 Found index url https://pypi.org/simple
2023-06-27T16:09:38,240 Looking up "https://pypi.org/simple/torch-sparse/" in the cache
2023-06-27T16:09:38,240 Request header has "max_age" as 0, cache bypassed
2023-06-27T16:09:38,248 https://pypi.org:443 "GET /simple/torch-sparse/ HTTP/1.1" 304 0
2023-06-27T16:09:38,252 Found link https://files.pythonhosted.org/packages/21/a6/af5865f7bc2dc45ea789ebb35bdf5d84c05e140d7d2ec7e5823d24db176f/torch_sparse-0.1.0.tar.gz#sha256=d774c4b05a96bf09e3c3becd2f48c65ed66b03195a2cfc4992ef57c9a8c6b399 (from https://pypi.org/simple/torch-sparse/), version: 0.1.0
2023-06-27T16:09:38,252 Found link https://files.pythonhosted.org/packages/02/4f/89bcb156022a3960c4db852915c64ea78b4e993e0f8d7a83e60e6819fc11/torch_sparse-0.2.0.tar.gz#sha256=578fdc3522b06c948d43fbc360d0dcde8a89d9a2496ac468592bf3493baedd33 (from https://pypi.org/simple/torch-sparse/), version: 0.2.0
2023-06-27T16:09:38,252 Found link https://files.pythonhosted.org/packages/8f/41/98db80cc9d9345c76445393661ce4dd3e08fc46fb17028e7706612063e4d/torch_sparse-0.2.1.tar.gz#sha256=01346234f0e76103304f8aa1099f22c0904d2fff8b36c5ec0230335149f526bc (from https://pypi.org/simple/torch-sparse/), version: 0.2.1
2023-06-27T16:09:38,252 Found link https://files.pythonhosted.org/packages/73/5b/5b7b6c66148afaa5e2ed8a3e18e109361957d28e67032d92cb282d173f32/torch_sparse-0.2.2.tar.gz#sha256=11e87c0214a4491168f15726ddda6c771b5f34be728f3edbb4add203e46d924d (from https://pypi.org/simple/torch-sparse/), version: 0.2.2
2023-06-27T16:09:38,252 Found link https://files.pythonhosted.org/packages/43/2a/bb2ead5b33c6932937c6c74199ebecd72bd4b3ab224842a50366e5b2af4a/torch_sparse-0.2.3.tar.gz#sha256=47b3f85b0c243d0c98798db722b0f066830f6b8ff9d298a6e2aed0662598e356 (from https://pypi.org/simple/torch-sparse/), version: 0.2.3
2023-06-27T16:09:38,252 Found link https://files.pythonhosted.org/packages/73/72/e374662f6f47d9ac0e082a6d5c18d14e15c52863e89c6bc6957a0d2ed026/torch_sparse-0.2.4.tar.gz#sha256=5cae8b40a5d11b8917e0f4b95034b5842b052f42a089ce59f8c02f2cff00ca55 (from https://pypi.org/simple/torch-sparse/), version: 0.2.4
2023-06-27T16:09:38,252 Found link https://files.pythonhosted.org/packages/b0/0a/2ff678e0d04e524dd2cf990a6202ced8c0ffe3fe6b08e02f25cc9fd27da0/torch_sparse-0.4.0.tar.gz#sha256=bf217539b4f714a1d6fac4d39ace3ad8033871717f44f8f365a2746056b9d805 (from https://pypi.org/simple/torch-sparse/), version: 0.4.0
2023-06-27T16:09:38,252 Found link https://files.pythonhosted.org/packages/c7/3e/aa5449787910283d846a7c739899ccf8c53c914f8a7aee7bc500a32dc091/torch_sparse-0.4.1.tar.gz#sha256=4831fe4b78b86d4dff948d50fec042ef99b98e850495b400189456380ec397d4 (from https://pypi.org/simple/torch-sparse/), version: 0.4.1
2023-06-27T16:09:38,252 Found link https://files.pythonhosted.org/packages/7d/c5/1f73917168aa9816f41e0696f266fa07d0ebfe8d25c3e63a0f08440534b9/torch_sparse-0.4.2.tar.gz#sha256=a652feb1b945995fb863dcbfdaa01de9096d5ed7230380ebf6d262e649eb4123 (from https://pypi.org/simple/torch-sparse/), version: 0.4.2
2023-06-27T16:09:38,252 Found link https://files.pythonhosted.org/packages/08/4e/a268613fa6a92ffbc65b89e66fc8be5590801937185007f0f7bcb75ea21f/torch_sparse-0.4.3.tar.gz#sha256=87b63cb21f091b450271e75d42280c9ef165d61e6ae6dcb983ad2caedfd6eb0f (from https://pypi.org/simple/torch-sparse/), version: 0.4.3
2023-06-27T16:09:38,252 Found link https://files.pythonhosted.org/packages/0e/bf/6242893c898621e7e4756e1ad298e903df6dfae208aec1c32adf8cfd1f7f/torch_sparse-0.4.4.tar.gz#sha256=0c71a15444c56a1117ec200b60aef64121ee5dc8f6f97fbc1ca4c289579d8eb2 (from https://pypi.org/simple/torch-sparse/), version: 0.4.4
2023-06-27T16:09:38,253 Found link https://files.pythonhosted.org/packages/92/80/7137d14dac46d515373d8b3eb47e2565ecfd646ba8658a6a6a1c24e49a2c/torch_sparse-0.5.1.tar.gz#sha256=ab62ffff2c97c5769cdd4aa348ad9b4ed9c4f1f174e155f3845a1864e8771f11 (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.6), version: 0.5.1
2023-06-27T16:09:38,253 Found link https://files.pythonhosted.org/packages/11/17/03bd3a1f056d971e498bd1ad818bbde3dd5409c845ed2ce76186fec65dd2/torch_sparse-0.6.0.tar.gz#sha256=b5c0edc380e51b33e60a97d7580212a7672e5fab11daece50a905deb8e91dfa7 (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.6), version: 0.6.0
2023-06-27T16:09:38,253 Found link https://files.pythonhosted.org/packages/12/9e/66247cbc250e746d06de35c6eb226ec39f4cb4be46adf6ee27527915910b/torch_sparse-0.6.1.tar.gz#sha256=41de6bb39450fc59917c582caa353505d443809af3601c67e4fbaa2284fd1899 (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.6), version: 0.6.1
2023-06-27T16:09:38,253 Found link https://files.pythonhosted.org/packages/dc/65/ee198eae5c517cfc6d05473bf4ec8593830dc61446ffd65fdb7cd3b469ce/torch_sparse-0.6.3.tar.gz#sha256=2d2bb488e14207187f9856d2a9349851e7a3cc37d0f5cf7c7ed930d0fc8c7531 (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.6), version: 0.6.3
2023-06-27T16:09:38,253 Found link https://files.pythonhosted.org/packages/92/d4/7261b5ee3ff529ac3652fda2ad9757c0fb3cde514014a9c26fe71bad38e9/torch_sparse-0.6.4.tar.gz#sha256=8698ef4bb3f9a51b278b5fdd2ed1b2f4389e871c135f6cdf38355f3c96709457 (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.6), version: 0.6.4
2023-06-27T16:09:38,253 Found link https://files.pythonhosted.org/packages/18/0d/a0ab465c6fd30318e8ce2c121424fb09573e46eb16231e6fedb6ddd953f5/torch_sparse-0.6.5.tar.gz#sha256=e457718abdafb65a683a374f17e4bd84bb5d51cdeaa3a1dc364d514f67eaa834 (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.6), version: 0.6.5
2023-06-27T16:09:38,254 Found link https://files.pythonhosted.org/packages/db/d1/968436c29959c321740ee95f781c961f12b2d23f0ecdbdaaf3ccf64ddc94/torch_sparse-0.6.6.tar.gz#sha256=9ee9e76eb2ef144afb82ae512ee768e652c436a38f92e7b90e7d0aa3c6c2814e (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.6), version: 0.6.6
2023-06-27T16:09:38,254 Found link https://files.pythonhosted.org/packages/ce/c0/f5ccc280629765cf1e97b601426cad6170d00603cf9836ba52f85d44ac27/torch_sparse-0.6.7.tar.gz#sha256=f69b2ed35baf2a9853234756a2b19e6f7ce88d2c1f029d1c7ca166d91e1adbd0 (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.6), version: 0.6.7
2023-06-27T16:09:38,254 Found link https://files.pythonhosted.org/packages/3c/dd/f34dce6512a3922948c3ac0cf50cceb2eeafeedd34a278d502eb77d07dc0/torch_sparse-0.6.8.tar.gz#sha256=312fb5ae6e4e575fca4bbc0bd092af85e7679d5b8e53459f24492fc2a073c7b6 (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.6), version: 0.6.8
2023-06-27T16:09:38,254 Found link https://files.pythonhosted.org/packages/9a/86/699eb78ea7ce259da7f9953858ec2a064e4e5f5e6bf7de53aa6c8bb8b9a8/torch_sparse-0.6.9.tar.gz#sha256=089a3200044d0d392a4d0d84803f926da28a44532fe30f4c8d6c34f567680db3 (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.6), version: 0.6.9
2023-06-27T16:09:38,254 Found link https://files.pythonhosted.org/packages/c7/49/c97315cd579a19d4e575ca06dd8f79f43c00c9c38658fbe91116cd7909dd/torch_sparse-0.6.10.tar.gz#sha256=2e2c7a3649d04e19b3b3960c1d7fc0e767017c93587de1e0d6eb7fda613a6b82 (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.6), version: 0.6.10
2023-06-27T16:09:38,254 Found link https://files.pythonhosted.org/packages/5a/81/f66f60ef6ce915ca54a4fcd0c97ec8a1a802312c1774caf329a866ebbf31/torch_sparse-0.6.11.tar.gz#sha256=1d57bc0fc9d9b6cfdc9dcc12017dc371c89c901e5d7a73e6149c8b866eca1267 (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.6), version: 0.6.11
2023-06-27T16:09:38,255 Found link https://files.pythonhosted.org/packages/00/40/208c5b8ae34c89403d9da648c9689465880539d95a4ad570ac9d6f301b72/torch_sparse-0.6.12.tar.gz#sha256=85db85bd45855cde4be093c7e2413b962b21b31151ad7eacd19ca4e2808bced2 (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.6), version: 0.6.12
2023-06-27T16:09:38,255 Found link https://files.pythonhosted.org/packages/ee/44/b4a1d6d7fa67309781005c0e36723dd0bd745fc1a20c9330796055953b10/torch_sparse-0.6.13.tar.gz#sha256=b4896822559f9b47d8b0186d74c94b7449f91db155a57d617fbeae9b722fa1f3 (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.7), version: 0.6.13
2023-06-27T16:09:38,255 Found link https://files.pythonhosted.org/packages/ed/f0/8d198555417336fac1b56c23b50699717cfc743f5d6bd5d1ece59695aa4c/torch_sparse-0.6.14.tar.gz#sha256=36632fa7b219a71d54a6bb245765379ab4d387a694f34ab429a9a9f70879ad66 (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.7), version: 0.6.14
2023-06-27T16:09:38,255 Found link https://files.pythonhosted.org/packages/6d/79/df42a4bf93191ff44d31ba58eb3ec98a02dfb7402fac34852f864c4b3999/torch_sparse-0.6.15.tar.gz#sha256=3a741ae8a7cc19247a44de549fa4d593c4257b5f741e1eb5110b712a14209dd9 (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.7), version: 0.6.15
2023-06-27T16:09:38,255 Found link https://files.pythonhosted.org/packages/88/e8/9e75676a3415d438fdb354b5ee0ffac777eb447fe4924224beef7529ea43/torch_sparse-0.6.16.tar.gz#sha256=7657cfdcac221fb92aa00af7e6032853a7d2cc0d58151d9436485094ab7635ac (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.7), version: 0.6.16
2023-06-27T16:09:38,255 Found link https://files.pythonhosted.org/packages/cb/ff/21d4674bdf232cd7a2bdbbbb04c35ba1cbdf444d4f3331f5d7eb6c5d4a8f/torch_sparse-0.6.17.tar.gz#sha256=06e268dd77f73eb641da8f9383306d7afac6423383c9197b9df120955e2a96bd (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.7), version: 0.6.17
2023-06-27T16:09:38,255 Skipping link: not a file: https://pypi.org/simple/torch-sparse/
2023-06-27T16:09:38,256 Given no hashes to check 30 links for project 'torch-sparse': discarding no candidates
2023-06-27T16:09:38,264 Collecting torch_sparse
2023-06-27T16:09:38,264 Created temporary directory: /tmp/pip-unpack-gna4r7c4
2023-06-27T16:09:38,265 Looking up "https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp310-cp310-linux_x86_64.whl" in the cache
2023-06-27T16:09:38,285 Current age based on date: 342312
2023-06-27T16:09:38,336 https://data.pyg.org:443 "GET /whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp310-cp310-linux_x86_64.whl HTTP/1.1" 304 0
2023-06-27T16:09:38,366 Using cached https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (4.8 MB)
2023-06-27T16:09:38,374 Added torch_sparse from https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp310-cp310-linux_x86_64.whl to build tracker '/tmp/pip-req-tracker-tt8b8m_q'
2023-06-27T16:09:38,375 Removed torch_sparse from https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp310-cp310-linux_x86_64.whl from build tracker '/tmp/pip-req-tracker-tt8b8m_q'
2023-06-27T16:09:38,377 2 location(s) to search for versions of torch-cluster:
2023-06-27T16:09:38,377 * https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html
2023-06-27T16:09:38,377 * https://pypi.org/simple/torch-cluster/
2023-06-27T16:09:38,377 Fetching project page and analyzing links: https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html
2023-06-27T16:09:38,377 Getting page https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html
2023-06-27T16:09:38,378 Looking up "https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html" in the cache
2023-06-27T16:09:38,378 Request header has "max_age" as 0, cache bypassed
2023-06-27T16:09:38,385 https://pytorch-geometric.com:443 "GET /whl/torch-2.0.0%2Bcu118.html HTTP/1.1" 304 0
2023-06-27T16:09:38,387 Found link https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html), version: 1.6.1+pt20cu118
2023-06-27T16:09:38,389 Fetching project page and analyzing links: https://pypi.org/simple/torch-cluster/
2023-06-27T16:09:38,389 Getting page https://pypi.org/simple/torch-cluster/
2023-06-27T16:09:38,389 Found index url https://pypi.org/simple
2023-06-27T16:09:38,389 Looking up "https://pypi.org/simple/torch-cluster/" in the cache
2023-06-27T16:09:38,389 Request header has "max_age" as 0, cache bypassed
2023-06-27T16:09:38,452 https://pypi.org:443 "GET /simple/torch-cluster/ HTTP/1.1" 304 0
2023-06-27T16:09:38,456 Found link https://files.pythonhosted.org/packages/58/77/1ddc3390129653d1e0e1e0c8063d47a2f40abc888d95b4a2fba774e215df/torch_cluster-0.1.1.tar.gz#sha256=f4f64eabc4c380bff9863d3ce9b93b0a65c7ea6f797f9ee053dc74d7d92ea928 (from https://pypi.org/simple/torch-cluster/), version: 0.1.1
2023-06-27T16:09:38,456 Found link https://files.pythonhosted.org/packages/ac/92/c583aabacb052afed67db146662c23625ad861a74140e338996816a879f4/torch_cluster-0.2.3.tar.gz#sha256=43d9840078f962abfced55043d8320f80c7f91aa7f54398b9ad631ee577bbfb1 (from https://pypi.org/simple/torch-cluster/), version: 0.2.3
2023-06-27T16:09:38,456 Found link https://files.pythonhosted.org/packages/6e/9b/493def262b256290ad6913c9f36b774af6f52d9d46d3fee31b77b3803eb0/torch_cluster-0.2.4.tar.gz#sha256=f421986d71a644b72c69551f09df31eb8657203d59d639aac33192192ed675b5 (from https://pypi.org/simple/torch-cluster/), version: 0.2.4
2023-06-27T16:09:38,456 Found link https://files.pythonhosted.org/packages/8a/2c/ddf6e6fc9c4af6c37a20996100cf6a6427accd7939470bc99071d3487753/torch_cluster-1.0.1.tar.gz#sha256=04cf3ad486eff6cc6069e3d1c18a2acd7662169f36d02a13f3a7adaabfc06b91 (from https://pypi.org/simple/torch-cluster/), version: 1.0.1
2023-06-27T16:09:38,457 Found link https://files.pythonhosted.org/packages/87/9d/e488a5186684632e3e0f14eaec125936cf25a3a24552afd26e7bb426d2ee/torch_cluster-1.0.3.tar.gz#sha256=795264f9e9f36eb44aeb28716d68ea93cd6dc7f75c8e05e0d16eb0597ffcd1a6 (from https://pypi.org/simple/torch-cluster/), version: 1.0.3
2023-06-27T16:09:38,457 Found link https://files.pythonhosted.org/packages/7b/95/bca3179ce501792bf268d37f18cc82577c289fa093bfdcfc26e375019da5/torch_cluster-1.1.1.tar.gz#sha256=e919f64153fd97efe958a509a0a558a31bf5f2dbe2deeff09d300e33d3994b14 (from https://pypi.org/simple/torch-cluster/), version: 1.1.1
2023-06-27T16:09:38,457 Found link https://files.pythonhosted.org/packages/36/b0/25ca8b811059e001f1e3285ac3036b6969fb21350e411c6881ba2b9be3c3/torch_cluster-1.1.2.tar.gz#sha256=082c4e71079cd1bed89da4178b3391361fa6aac5ae2edb783c08fed3da5b93c4 (from https://pypi.org/simple/torch-cluster/), version: 1.1.2
2023-06-27T16:09:38,457 Found link https://files.pythonhosted.org/packages/e2/4f/5205f832d3eef871fe71564aa9fb8504a65be5e95be09800e125e224e634/torch_cluster-1.1.3.tar.gz#sha256=d5c80159f91e329bcc95b316a29ecf466257598680b3b5fb2ea137a585037c78 (from https://pypi.org/simple/torch-cluster/), version: 1.1.3
2023-06-27T16:09:38,457 Found link https://files.pythonhosted.org/packages/d0/e1/495ecc73f1e5534ecbedf1a301557d6c9fc93417467e5107fd9ac54fcbfa/torch_cluster-1.1.4.tar.gz#sha256=a298694afe91f146be3921b8c9da06051958b7598c6e69a9af5833a1af56e7f3 (from https://pypi.org/simple/torch-cluster/), version: 1.1.4
2023-06-27T16:09:38,457 Found link https://files.pythonhosted.org/packages/a6/b3/de9c051d1df504d78542d178231f2ae7d08a411c9ca59219028742886947/torch_cluster-1.1.5.tar.gz#sha256=b67d6c89b71e4146dcfa078cc6a201a1647d888441a9f278b30770f91c7978a1 (from https://pypi.org/simple/torch-cluster/), version: 1.1.5
2023-06-27T16:09:38,457 Found link https://files.pythonhosted.org/packages/96/de/9506fa869cf52edc58c2517b41c0ec1c7678c05b95aff000a509e4238765/torch_cluster-1.2.1.tar.gz#sha256=371b438113bcb7cab1b6931740e9194972f0f7349e1d033437a4196d7d693130 (from https://pypi.org/simple/torch-cluster/), version: 1.2.1
2023-06-27T16:09:38,457 Found link https://files.pythonhosted.org/packages/33/b7/05b9ce9afc76f5709efe04d6344fbed09ea217f916f94e63f2fe9659eb62/torch_cluster-1.2.2.tar.gz#sha256=a1e39e16a7ade806a852117fe16fe2b505fd4bc43bc4207f48fecb0f6b2e1f64 (from https://pypi.org/simple/torch-cluster/), version: 1.2.2
2023-06-27T16:09:38,457 Found link https://files.pythonhosted.org/packages/67/19/a0b1e3a7633ced39d9977ce0b98a1b3e343f0772f4090b0a2d421ac5b56d/torch_cluster-1.2.3.tar.gz#sha256=f8a6b5f47bf6a2a396301d0f4ec0733a650f7a5ae84b08b8625408b8979747ea (from https://pypi.org/simple/torch-cluster/), version: 1.2.3
2023-06-27T16:09:38,457 Found link https://files.pythonhosted.org/packages/32/c8/9b3af10be647326dd807bb2fe7ced8ae4c3fd74178dba884621749afc4d7/torch_cluster-1.2.4.tar.gz#sha256=4e5f8c15b28329b269adecadd64917cb5373c6438a5fdf463f633bd4e73c4ae6 (from https://pypi.org/simple/torch-cluster/), version: 1.2.4
2023-06-27T16:09:38,457 Found link https://files.pythonhosted.org/packages/93/f9/89319a7344e5bcda090fb3996c4271b1fda238ad90401a315c9af1ce4137/torch_cluster-1.3.0.tar.gz#sha256=7b0e1b7061bf8c2754d63a66159f47757ce28b072bc37921fbcc59974eb2d342 (from https://pypi.org/simple/torch-cluster/), version: 1.3.0
2023-06-27T16:09:38,458 Found link https://files.pythonhosted.org/packages/6b/3b/a34740494a1b25cb2ef4ed09e5d5ef6bc75be884f6b25bd93a7acdf03134/torch_cluster-1.4.0.tar.gz#sha256=c256d61f20193b104a2f4c610b4ad95fa3cbaeb72b2ae9bf3d254cb3d573e945 (from https://pypi.org/simple/torch-cluster/), version: 1.4.0
2023-06-27T16:09:38,458 Found link https://files.pythonhosted.org/packages/2f/0c/77453228c248e8071d185940ecb3dd9eca3cac180767bde75b2bc05c0c65/torch_cluster-1.4.1.tar.gz#sha256=e7a900d54cb2dc241c84b1da382f358399880c61290f7be72babf98500496494 (from https://pypi.org/simple/torch-cluster/), version: 1.4.1
2023-06-27T16:09:38,458 Found link https://files.pythonhosted.org/packages/33/38/60ad2fcb735123429b3e0b165a19c80c6273d679b01d6550782abcb314e2/torch_cluster-1.4.2.tar.gz#sha256=ed437ec01f431d0f36398cc321524aac27870cc09e7a5a869726af9c15ac354a (from https://pypi.org/simple/torch-cluster/), version: 1.4.2
2023-06-27T16:09:38,458 Found link https://files.pythonhosted.org/packages/7e/30/b315f136648801433ce6b2724fe3bfaae3c0f8a13282aa58d38ad2a8a3db/torch_cluster-1.4.3a1.tar.gz#sha256=680e47ee41a0cec223c179ce3ea2174de48ac6a277eced453ccadf4bdd2f51c9 (from https://pypi.org/simple/torch-cluster/), version: 1.4.3a1
2023-06-27T16:09:38,458 Found link https://files.pythonhosted.org/packages/49/0d/f7151fb6aad5c9b0e032e46c0678e0404870de4add35b0723fc2a5c4af35/torch_cluster-1.4.3.tar.gz#sha256=340eaf9e31a7a0618f2c3d61c480e1d74466c930827f10fee86d11d8c5b85cba (from https://pypi.org/simple/torch-cluster/), version: 1.4.3
2023-06-27T16:09:38,458 Found link https://files.pythonhosted.org/packages/bd/5f/01c5799cd1f81f9956f03a0e1d9a861e020a598dd411d9bd3c3c1dd5b8a4/torch_cluster-1.4.4.tar.gz#sha256=7907f3f270116cb299bdd4f88de497a85b3b34cf127910ffe0a6131e16620123 (from https://pypi.org/simple/torch-cluster/), version: 1.4.4
2023-06-27T16:09:38,458 Found link https://files.pythonhosted.org/packages/c3/70/1d827d6fd1e03bb5ae84852dd0070c6574105c37e7b935284f6e990932db/torch_cluster-1.4.5.tar.gz#sha256=cf5b9363d82173bb26bb966ba93712c3262765a3a4d25c003479732a9260c257 (from https://pypi.org/simple/torch-cluster/), version: 1.4.5
2023-06-27T16:09:38,458 Found link https://files.pythonhosted.org/packages/a6/cf/6f6c79ce98346cc3ef07f835dbf4cf483a37b88e2974733a22bac148ea0e/torch_cluster-1.5.2.tar.gz#sha256=3ab3b77d424d749993482bc79fa673d0e3d444159118a41e37a9fd4a6292d11a (from https://pypi.org/simple/torch-cluster/) (requires-python:>=3.6), version: 1.5.2
2023-06-27T16:09:38,458 Found link https://files.pythonhosted.org/packages/4e/72/df7533bf9362e400399b1438e6a6ecf2ceded65bd5216da148143b43fa83/torch_cluster-1.5.3.tar.gz#sha256=c2484d14f68d1d6f0d302a0ca4811b84cc4c8800a14aef127539629375723f65 (from https://pypi.org/simple/torch-cluster/) (requires-python:>=3.6), version: 1.5.3
2023-06-27T16:09:38,459 Found link https://files.pythonhosted.org/packages/08/8b/b483508812fe2242ddf645605ee720822943877b11f820ece1dba5c40fc8/torch_cluster-1.5.4.tar.gz#sha256=000f217e6bb2ef89e2403b27fe7c4b2c1f7fbacf781790b194f712b46d648a0c (from https://pypi.org/simple/torch-cluster/) (requires-python:>=3.6), version: 1.5.4
2023-06-27T16:09:38,459 Found link https://files.pythonhosted.org/packages/49/6e/85b9cd8bd984d9178b731bbb26e780c576cf64e4643675ac56eb93a9d8de/torch_cluster-1.5.5.tar.gz#sha256=e9ef5d3a9376537275137f33df7d30bac7019311434dd2fa3124f53dda1e06ff (from https://pypi.org/simple/torch-cluster/) (requires-python:>=3.6), version: 1.5.5
2023-06-27T16:09:38,459 Found link https://files.pythonhosted.org/packages/59/1b/a6266f42bbf485eae4b691ec24302c3e7eae3dbf2a34aec3cb57d96a2bf8/torch_cluster-1.5.6.tar.gz#sha256=323ccc48eeb8c66929158d912124997b37116ee5c182077bdf4a25989f4fd3b3 (from https://pypi.org/simple/torch-cluster/) (requires-python:>=3.6), version: 1.5.6
2023-06-27T16:09:38,459 Found link https://files.pythonhosted.org/packages/ff/78/66d8a75aea9d671dc25a7368fd6e86d1e43c4c47c3dd3d68df16dde57837/torch_cluster-1.5.7.tar.gz#sha256=62a3ec1bebadda1a4a2c867203f4c957b9c0b9d11ffb03b40b8ea9f95a0a4d3b (from https://pypi.org/simple/torch-cluster/) (requires-python:>=3.6), version: 1.5.7
2023-06-27T16:09:38,459 Found link https://files.pythonhosted.org/packages/ff/39/6524367aed276171ba66675b25b368c1522e1d35e17b96ee4ff4025e1d98/torch_cluster-1.5.8.tar.gz#sha256=a0a32f63faac40a026ab1e9da31f6babdb4d937e53be40bd1c91d9b5a286eee6 (from https://pypi.org/simple/torch-cluster/) (requires-python:>=3.6), version: 1.5.8
2023-06-27T16:09:38,459 Found link https://files.pythonhosted.org/packages/4b/27/2f38017ae386ba27c13efe6a87eca7c3c58766c3117c86e0fa2c3f7562a9/torch_cluster-1.5.9.tar.gz#sha256=96209e9f3f073c8e7fe91fbf7dd2cdd8655622d14dfc95a7618b4893a658dca5 (from https://pypi.org/simple/torch-cluster/) (requires-python:>=3.6), version: 1.5.9
2023-06-27T16:09:38,459 Found link https://files.pythonhosted.org/packages/12/4a/4c4c8af938bce77ef6737de22d9d4dfc393412730a4f1550d14c696d09b5/torch_cluster-1.6.0.tar.gz#sha256=249c1bd8c33a887b22bf569a59d0868545804032123594dd8c76ba1885859c39 (from https://pypi.org/simple/torch-cluster/) (requires-python:>=3.7), version: 1.6.0
2023-06-27T16:09:38,460 Found link https://files.pythonhosted.org/packages/5f/e8/0e6b8b8a2889b5860da15fa704ff081b3bb7002cd8ec086f5834244ed591/torch_cluster-1.6.1.tar.gz#sha256=a760e0b4ba71b00d9d908bb6f834aa28f055783ee5af9aecc3f3f94853535f72 (from https://pypi.org/simple/torch-cluster/) (requires-python:>=3.7), version: 1.6.1
2023-06-27T16:09:38,460 Skipping link: not a file: https://pypi.org/simple/torch-cluster/
2023-06-27T16:09:38,460 Given no hashes to check 32 links for project 'torch-cluster': discarding no candidates
2023-06-27T16:09:38,469 Collecting torch_cluster
2023-06-27T16:09:38,469 Created temporary directory: /tmp/pip-unpack-tgdpww19
2023-06-27T16:09:38,470 Looking up "https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl" in the cache
2023-06-27T16:09:38,483 Current age based on date: 342312
2023-06-27T16:09:38,533 https://data.pyg.org:443 "GET /whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl HTTP/1.1" 304 0
2023-06-27T16:09:38,543 Using cached https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (3.3 MB)
2023-06-27T16:09:38,548 Added torch_cluster from https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl to build tracker '/tmp/pip-req-tracker-tt8b8m_q'
2023-06-27T16:09:38,549 Removed torch_cluster from https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl from build tracker '/tmp/pip-req-tracker-tt8b8m_q'
2023-06-27T16:09:38,550 2 location(s) to search for versions of torch-spline-conv:
2023-06-27T16:09:38,550 * https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html
2023-06-27T16:09:38,550 * https://pypi.org/simple/torch-spline-conv/
2023-06-27T16:09:38,551 Fetching project page and analyzing links: https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html
2023-06-27T16:09:38,551 Getting page https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html
2023-06-27T16:09:38,551 Looking up "https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html" in the cache
2023-06-27T16:09:38,551 Request header has "max_age" as 0, cache bypassed
2023-06-27T16:09:38,558 https://pytorch-geometric.com:443 "GET /whl/torch-2.0.0%2Bcu118.html HTTP/1.1" 304 0
2023-06-27T16:09:38,561 Found link https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.0%2Bcu118.html), version: 1.2.2+pt20cu118
2023-06-27T16:09:38,562 Fetching project page and analyzing links: https://pypi.org/simple/torch-spline-conv/
2023-06-27T16:09:38,562 Getting page https://pypi.org/simple/torch-spline-conv/
2023-06-27T16:09:38,562 Found index url https://pypi.org/simple
2023-06-27T16:09:38,563 Looking up "https://pypi.org/simple/torch-spline-conv/" in the cache
2023-06-27T16:09:38,563 Request header has "max_age" as 0, cache bypassed
2023-06-27T16:09:38,628 https://pypi.org:443 "GET /simple/torch-spline-conv/ HTTP/1.1" 304 0
2023-06-27T16:09:38,631 Found link https://files.pythonhosted.org/packages/43/48/02fd06eca47d38efc031b34875c2e7453faab7bde7c02b2669957d230693/torch_spline_conv-0.1.0.tar.gz#sha256=b1d7bceecffb4bc394d9f5df57b56fbff95867aeb778588a054e95a6ba5cd610 (from https://pypi.org/simple/torch-spline-conv/), version: 0.1.0
2023-06-27T16:09:38,632 Found link https://files.pythonhosted.org/packages/99/a6/19a54aaaf507960814af5b6ec3d6916497d54a9345d0b64a98764465fddc/torch_spline_conv-1.0.0.tar.gz#sha256=72950ae9cc15dd00d0977ffca115af0e59c10f1dbac33dd800307fef2b5808c3 (from https://pypi.org/simple/torch-spline-conv/), version: 1.0.0
2023-06-27T16:09:38,632 Found link https://files.pythonhosted.org/packages/4a/e9/973d572b69f8fef3b08d86f77312a75ab4c00ffe8d3582ae09b433b34b8a/torch_spline_conv-1.0.1.tar.gz#sha256=6be33fab8402950b2ddc1dec950d0b5d4c6f183bcf53bca2534a03eb4fd5801b (from https://pypi.org/simple/torch-spline-conv/), version: 1.0.1
2023-06-27T16:09:38,632 Found link https://files.pythonhosted.org/packages/bc/ff/4e834a74fd180f87f6f9aedcfd876cca4c6fa706afa31e9541838f6958d1/torch_spline_conv-1.0.3.tar.gz#sha256=a0be3bc9847458ca92146c2da754dbd2f910be426414757256416e507240da88 (from https://pypi.org/simple/torch-spline-conv/), version: 1.0.3
2023-06-27T16:09:38,632 Found link https://files.pythonhosted.org/packages/1b/d2/98328ef2395b70b9795ddbd091398e49e918f8892d1ea8dad869550b684b/torch_spline_conv-1.0.4.tar.gz#sha256=26e2bb0832d45d185f2e7b38569e64e7f70af8ca2a8b05663972f261ba76a978 (from https://pypi.org/simple/torch-spline-conv/), version: 1.0.4
2023-06-27T16:09:38,632 Found link https://files.pythonhosted.org/packages/92/86/f086f96e09654106ad527f4b03ac6188c1299a9fe555fc39c663b155a05a/torch_spline_conv-1.0.5.tar.gz#sha256=fffa87c94703e4c43a46bd8ec149cd6c125586ebd1f3c04fec48d1f6b60a4f3c (from https://pypi.org/simple/torch-spline-conv/), version: 1.0.5
2023-06-27T16:09:38,632 Found link https://files.pythonhosted.org/packages/9a/6d/b34721af4bb907814a41a1e0e5e426c97aee644efef6877ed112bfb3d81c/torch_spline_conv-1.0.6.tar.gz#sha256=a8bd72bac7dc078ddfbf22789c5fcdf159901494c626344d67ad203e7f8c9b1e (from https://pypi.org/simple/torch-spline-conv/), version: 1.0.6
2023-06-27T16:09:38,632 Found link https://files.pythonhosted.org/packages/3c/dd/daa9d0b7b2ede913e573876ae286a58ec296678858f2814ff6d6789b234f/torch_spline_conv-1.1.0.tar.gz#sha256=e6029526205d1f7cb535389bebd81decf0649a20ea6a67688c02bd335a7f9339 (from https://pypi.org/simple/torch-spline-conv/), version: 1.1.0
2023-06-27T16:09:38,633 Found link https://files.pythonhosted.org/packages/5e/77/5420584cdb1514c580722ca4bc482a509105d64b7c70246e9dc4a3e6d3c5/torch_spline_conv-1.1.1.tar.gz#sha256=622e2f3763e41044f6364ff7a4c6a417cb73c7e6a6edec763abd14847863ebd2 (from https://pypi.org/simple/torch-spline-conv/), version: 1.1.1
2023-06-27T16:09:38,633 Found link https://files.pythonhosted.org/packages/b9/8c/b888f63e797af27a9dc50580f82e2630f32b151e2f70b88e47841f9a0132/torch_spline_conv-1.2.0.tar.gz#sha256=b7a1788004f6c6143d47040f2dd7d8a579a0c69a0cb0b5d7537416bf37c082a5 (from https://pypi.org/simple/torch-spline-conv/) (requires-python:>=3.6), version: 1.2.0
2023-06-27T16:09:38,633 Found link https://files.pythonhosted.org/packages/80/f8/4d010376565c59b3c397b1cf103edc4e9b2ed087c2bbd3677f0a92930d75/torch_spline_conv-1.2.1.tar.gz#sha256=364f658e0ecb4c5263a728c2961553e022fc44c11a633d5a1bf986cf169ab438 (from https://pypi.org/simple/torch-spline-conv/) (requires-python:>=3.6), version: 1.2.1
2023-06-27T16:09:38,633 Found link https://files.pythonhosted.org/packages/a0/50/5f80c47bf09b561ded0981b088ab0064424843696aa35b3b83afde421e56/torch_spline_conv-1.2.2.tar.gz#sha256=ed45a81da29f774665dbdd4709d7e534cdf16d2e7006dbd06957f35bd09661b2 (from https://pypi.org/simple/torch-spline-conv/) (requires-python:>=3.7), version: 1.2.2
2023-06-27T16:09:38,633 Skipping link: not a file: https://pypi.org/simple/torch-spline-conv/
2023-06-27T16:09:38,634 Given no hashes to check 13 links for project 'torch-spline-conv': discarding no candidates
2023-06-27T16:09:38,645 Collecting torch_spline_conv
2023-06-27T16:09:38,646 Created temporary directory: /tmp/pip-unpack-h303ajyi
2023-06-27T16:09:38,647 Looking up "https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp310-cp310-linux_x86_64.whl" in the cache
2023-06-27T16:09:38,649 Current age based on date: 342312
2023-06-27T16:09:38,703 https://data.pyg.org:443 "GET /whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp310-cp310-linux_x86_64.whl HTTP/1.1" 304 0
2023-06-27T16:09:38,708 Using cached https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (884 kB)
2023-06-27T16:09:38,710 Added torch_spline_conv from https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp310-cp310-linux_x86_64.whl to build tracker '/tmp/pip-req-tracker-tt8b8m_q'
2023-06-27T16:09:38,710 Removed torch_spline_conv from https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp310-cp310-linux_x86_64.whl from build tracker '/tmp/pip-req-tracker-tt8b8m_q'
2023-06-27T16:09:38,721 Requirement already satisfied: scipy in /usr/lib/python3/dist-packages (from torch_sparse) (1.8.0)
2023-06-27T16:09:38,728 Created temporary directory: /tmp/pip-unpack-kqpegkmc
2023-06-27T16:09:39,578 Installing collected packages: torch_spline_conv, torch_sparse, torch_scatter, torch_cluster, pyg_lib
2023-06-27T16:09:40,204 Successfully installed pyg_lib-0.2.0+pt20cu118 torch_cluster-1.6.1+pt20cu118 torch_scatter-2.1.1+pt20cu118 torch_sparse-0.6.17+pt20cu118 torch_spline_conv-1.2.2+pt20cu118
2023-06-27T16:09:40,204 Removed build tracker: '/tmp/pip-req-tracker-tt8b8m_q'
2023-06-27T16:15:52,164 Using pip 22.0.2 from /usr/lib/python3/dist-packages/pip (python 3.10)
2023-06-27T16:15:52,165 Defaulting to user installation because normal site-packages is not writeable
2023-06-27T16:15:52,314 Created temporary directory: /tmp/pip-ephem-wheel-cache-_veahh3n
2023-06-27T16:15:52,314 Created temporary directory: /tmp/pip-req-tracker-89zxjtdk
2023-06-27T16:15:52,314 Initialized build tracking at /tmp/pip-req-tracker-89zxjtdk
2023-06-27T16:15:52,314 Created build tracker: /tmp/pip-req-tracker-89zxjtdk
2023-06-27T16:15:52,314 Entered build tracker: /tmp/pip-req-tracker-89zxjtdk
2023-06-27T16:15:52,315 Created temporary directory: /tmp/pip-install-9s3zrjg5
2023-06-27T16:15:52,323 Looking in links: https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html
2023-06-27T16:15:52,324 2 location(s) to search for versions of pyg-lib:
2023-06-27T16:15:52,324 * https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html
2023-06-27T16:15:52,324 * https://pypi.org/simple/pyg-lib/
2023-06-27T16:15:52,324 Fetching project page and analyzing links: https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html
2023-06-27T16:15:52,325 Getting page https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html
2023-06-27T16:15:52,326 Looking up "https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html" in the cache
2023-06-27T16:15:52,326 Request header has "max_age" as 0, cache bypassed
2023-06-27T16:15:52,327 Starting new HTTPS connection (1): pytorch-geometric.com:443
2023-06-27T16:15:52,782 https://pytorch-geometric.com:443 "GET /whl/torch-2.0.1%2Bcu118.html HTTP/1.1" 304 0
2023-06-27T16:15:52,793 Found link https://data.pyg.org/whl/torch-2.0.0%2Bcu118/pyg_lib-0.2.0%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html), version: 0.2.0+pt20cu118
2023-06-27T16:15:52,793 Skipping link: none of the wheel's tags (cp311-cp311-linux_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/pyg_lib-0.2.0%2Bpt20cu118-cp311-cp311-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:15:52,794 Skipping link: none of the wheel's tags (cp38-cp38-linux_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/pyg_lib-0.2.0%2Bpt20cu118-cp38-cp38-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:15:52,794 Skipping link: none of the wheel's tags (cp39-cp39-linux_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/pyg_lib-0.2.0%2Bpt20cu118-cp39-cp39-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:15:52,794 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:15:52,794 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp310-cp310-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:15:52,794 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp311-cp311-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:15:52,794 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp311-cp311-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:15:52,794 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp38-cp38-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:15:52,794 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp38-cp38-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:15:52,795 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp39-cp39-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:15:52,795 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp39-cp39-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:15:52,795 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:15:52,795 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp310-cp310-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:15:52,795 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp311-cp311-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:15:52,795 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp311-cp311-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:15:52,795 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp38-cp38-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:15:52,795 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp38-cp38-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:15:52,795 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp39-cp39-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:15:52,795 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp39-cp39-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:15:52,795 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:15:52,796 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp310-cp310-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:15:52,796 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp311-cp311-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:15:52,796 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp311-cp311-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:15:52,796 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp38-cp38-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:15:52,796 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp38-cp38-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:15:52,796 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp39-cp39-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:15:52,796 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp39-cp39-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:15:52,796 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:15:52,796 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp310-cp310-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:15:52,796 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp311-cp311-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:15:52,797 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp311-cp311-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:15:52,797 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp38-cp38-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:15:52,797 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp38-cp38-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:15:52,797 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp39-cp39-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:15:52,797 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp39-cp39-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:15:52,797 Fetching project page and analyzing links: https://pypi.org/simple/pyg-lib/
2023-06-27T16:15:52,797 Getting page https://pypi.org/simple/pyg-lib/
2023-06-27T16:15:52,797 Found index url https://pypi.org/simple
2023-06-27T16:15:52,798 Looking up "https://pypi.org/simple/pyg-lib/" in the cache
2023-06-27T16:15:52,798 Request header has "max_age" as 0, cache bypassed
2023-06-27T16:15:52,798 Starting new HTTPS connection (1): pypi.org:443
2023-06-27T16:15:52,991 https://pypi.org:443 "GET /simple/pyg-lib/ HTTP/1.1" 404 13
2023-06-27T16:15:52,992 Status code 404 not in (200, 203, 300, 301, 308)
2023-06-27T16:15:52,992 Could not fetch URL https://pypi.org/simple/pyg-lib/: 404 Client Error: Not Found for url: https://pypi.org/simple/pyg-lib/ - skipping
2023-06-27T16:15:52,992 Skipping link: unsupported archive format: .html: https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html
2023-06-27T16:15:52,993 Skipping link: not a file: https://pypi.org/simple/pyg-lib/
2023-06-27T16:15:52,993 Given no hashes to check 1 links for project 'pyg-lib': discarding no candidates
2023-06-27T16:15:52,999 Collecting pyg_lib
2023-06-27T16:15:53,000 Created temporary directory: /tmp/pip-unpack-8ukkv_hc
2023-06-27T16:15:53,001 Looking up "https://data.pyg.org/whl/torch-2.0.0%2Bcu118/pyg_lib-0.2.0%2Bpt20cu118-cp310-cp310-linux_x86_64.whl" in the cache
2023-06-27T16:15:53,010 Current age based on date: 394
2023-06-27T16:15:53,019 Starting new HTTPS connection (1): data.pyg.org:443
2023-06-27T16:15:53,158 https://data.pyg.org:443 "GET /whl/torch-2.0.0%2Bcu118/pyg_lib-0.2.0%2Bpt20cu118-cp310-cp310-linux_x86_64.whl HTTP/1.1" 304 0
2023-06-27T16:15:53,166 Using cached https://data.pyg.org/whl/torch-2.0.0%2Bcu118/pyg_lib-0.2.0%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (1.8 MB)
2023-06-27T16:15:53,168 Added pyg_lib from https://data.pyg.org/whl/torch-2.0.0%2Bcu118/pyg_lib-0.2.0%2Bpt20cu118-cp310-cp310-linux_x86_64.whl to build tracker '/tmp/pip-req-tracker-89zxjtdk'
2023-06-27T16:15:53,169 Removed pyg_lib from https://data.pyg.org/whl/torch-2.0.0%2Bcu118/pyg_lib-0.2.0%2Bpt20cu118-cp310-cp310-linux_x86_64.whl from build tracker '/tmp/pip-req-tracker-89zxjtdk'
2023-06-27T16:15:53,170 2 location(s) to search for versions of torch-scatter:
2023-06-27T16:15:53,170 * https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html
2023-06-27T16:15:53,170 * https://pypi.org/simple/torch-scatter/
2023-06-27T16:15:53,170 Fetching project page and analyzing links: https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html
2023-06-27T16:15:53,170 Getting page https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html
2023-06-27T16:15:53,170 Looking up "https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html" in the cache
2023-06-27T16:15:53,171 Request header has "max_age" as 0, cache bypassed
2023-06-27T16:15:53,225 https://pytorch-geometric.com:443 "GET /whl/torch-2.0.1%2Bcu118.html HTTP/1.1" 304 0
2023-06-27T16:15:53,226 Skipping link: wrong project name (not torch-scatter): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/pyg_lib-0.2.0%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:15:53,227 Found link https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html), version: 2.1.1+pt20cu118
2023-06-27T16:15:53,227 Fetching project page and analyzing links: https://pypi.org/simple/torch-scatter/
2023-06-27T16:15:53,228 Getting page https://pypi.org/simple/torch-scatter/
2023-06-27T16:15:53,228 Found index url https://pypi.org/simple
2023-06-27T16:15:53,228 Looking up "https://pypi.org/simple/torch-scatter/" in the cache
2023-06-27T16:15:53,228 Request header has "max_age" as 0, cache bypassed
2023-06-27T16:15:53,235 https://pypi.org:443 "GET /simple/torch-scatter/ HTTP/1.1" 304 0
2023-06-27T16:15:53,237 Found link https://files.pythonhosted.org/packages/29/96/566ac314e796d4b07209a3b88cc7a8d2e8582d55819e33f72e6c0e8d8216/torch_scatter-0.3.0.tar.gz#sha256=9e5e5a6efa4ef45f584e8611f83690d799370dd122b862646751ae112b685b50 (from https://pypi.org/simple/torch-scatter/), version: 0.3.0
2023-06-27T16:15:53,237 Found link https://files.pythonhosted.org/packages/6a/b0/ecffacddf573c147c70c6e43ce05d24f007155ce3fb436959d3d2a24da46/torch_scatter-1.0.2.tar.gz#sha256=ccda794c25265b3450206b7fb0bf74f16a0b45f3f72d9547a42e44648a32faee (from https://pypi.org/simple/torch-scatter/), version: 1.0.2
2023-06-27T16:15:53,237 Found link https://files.pythonhosted.org/packages/08/09/07b106f3e74246f4ecf6517013a053b6dd7486c4f889d81f39adc662431f/torch_scatter-1.0.3.tar.gz#sha256=e626993194819ba65cdf89a52fbbb7780569d9e157bc63dbef13ead6b7a33930 (from https://pypi.org/simple/torch-scatter/), version: 1.0.3
2023-06-27T16:15:53,237 Found link https://files.pythonhosted.org/packages/2d/70/df2bc259d9606f00854ca43b6839f9047ec44900563435e0067584c93864/torch_scatter-1.0.4.tar.gz#sha256=ec004d687e47da9d5477407849d815629fc8b571ee87aeeebf6af8ed6f16defc (from https://pypi.org/simple/torch-scatter/), version: 1.0.4
2023-06-27T16:15:53,237 Found link https://files.pythonhosted.org/packages/2f/97/c50a6aeaedc6924180c6f5810d2a7405ce11aa9b82ba4284badad549d665/torch_scatter-1.1.0.tar.gz#sha256=e534cc2ecb2f9d9b559b1513cd411737d26ea5585d1d65ff571fec55f42a49de (from https://pypi.org/simple/torch-scatter/), version: 1.1.0
2023-06-27T16:15:53,237 Found link https://files.pythonhosted.org/packages/91/5f/eb1d3ef3810cb1165859d40db4d9ee6d7f1dfef97d7e5c34010055f43d95/torch_scatter-1.1.1.tar.gz#sha256=9db7f2c0a5cddf6cfde633e33db7c2c94eaab163e9f8edb46460d6414cc97917 (from https://pypi.org/simple/torch-scatter/), version: 1.1.1
2023-06-27T16:15:53,238 Found link https://files.pythonhosted.org/packages/d4/83/67eeea00c2db1959e2ff95d8680dbd756977bfab254bda8658f09dc3bc11/torch_scatter-1.1.2.tar.gz#sha256=766c2476f5da5ffc25fa8e249ccf50f594031cdce3922abb23559e8e3b14337a (from https://pypi.org/simple/torch-scatter/), version: 1.1.2
2023-06-27T16:15:53,238 Found link https://files.pythonhosted.org/packages/07/c0/f7ac424496f4a3bcb31aa993fba29077a6d42fc2624c66e90b58a566a98e/torch_scatter-1.2.0.tar.gz#sha256=3a0259105d07d264c740eec8e4267260a5c144cf55472abd26022fff4fd73281 (from https://pypi.org/simple/torch-scatter/), version: 1.2.0
2023-06-27T16:15:53,238 Found link https://files.pythonhosted.org/packages/24/b7/680c3b392a4b55a0ebfb480aabb0d5c188e94bb21790104175c8cd614947/torch_scatter-1.3.0.tar.gz#sha256=bf7d561b8ef12b39a99f5797c90b989a0ce2c3ee4de74dff3b170f2d8566e1d4 (from https://pypi.org/simple/torch-scatter/), version: 1.3.0
2023-06-27T16:15:53,238 Found link https://files.pythonhosted.org/packages/35/d4/750403a8aa32cdb3d2d05849c6a10e4e0604de5e0cc94b81a0d0d69a75f3/torch_scatter-1.3.1.tar.gz#sha256=54cbad248350165ddc921ded3fe7a69be5d30c6536273a1a3282e375289f86ec (from https://pypi.org/simple/torch-scatter/), version: 1.3.1
2023-06-27T16:15:53,238 Found link https://files.pythonhosted.org/packages/30/d9/1d5fd4d183dabd9e0a1f7008ecf83318432359f4cc27480e3f2212f44d9c/torch_scatter-1.3.2.tar.gz#sha256=890e8f9da2d57431912182960b71bf6c56397de42c2464907a6e9c583164bf06 (from https://pypi.org/simple/torch-scatter/), version: 1.3.2
2023-06-27T16:15:53,238 Found link https://files.pythonhosted.org/packages/b8/c3/8bad887ffa55c86f120ef5ae252dc0e357b3bd956d9fbf45242bacc46290/torch_scatter-1.4.0.tar.gz#sha256=5999ef256154e5a99445118c1a53f95cf0f95ef7b5cd8d3b256101125479cc2e (from https://pypi.org/simple/torch-scatter/), version: 1.4.0
2023-06-27T16:15:53,238 Found link https://files.pythonhosted.org/packages/28/f7/fa4e61587169924203a32416f7835939fdd79994eaa429b4f8ef8f0e07e2/torch_scatter-2.0.2.tar.gz#sha256=49d3059b7be93d3f2c328fdc6daa3a8479e3dc4a50c8247aef913177122db671 (from https://pypi.org/simple/torch-scatter/), version: 2.0.2
2023-06-27T16:15:53,238 Found link https://files.pythonhosted.org/packages/36/2a/ef3d841ec577e2231662ef86af983c6c7c7d509a0e1d9f12949d0218b492/torch_scatter-2.0.3.tar.gz#sha256=1c4b9cb0f6a195c20d8c4b6230d086cae6965b7eb08f80bd2ec050a094b8e563 (from https://pypi.org/simple/torch-scatter/) (requires-python:>=3.6), version: 2.0.3
2023-06-27T16:15:53,238 Found link https://files.pythonhosted.org/packages/98/a9/47cd92673b6ba251240d587815c763baac2099b07bb76fecdb3b7ae5cece/torch_scatter-2.0.4.tar.gz#sha256=db6c9eca919b86f3eb6102dd0e1215af72e39ed3a4e8d142e6a21d3f20d5c244 (from https://pypi.org/simple/torch-scatter/) (requires-python:>=3.6), version: 2.0.4
2023-06-27T16:15:53,238 Found link https://files.pythonhosted.org/packages/01/45/cd93ed3227248773ba8bc4b3beaa04e8bddb127a793a41bad875369951b3/torch_scatter-2.0.5.tar.gz#sha256=148fbe634fb9e9465dbde2ab337138f63650ed8abbac42bb3f565e3fe92e9b2f (from https://pypi.org/simple/torch-scatter/) (requires-python:>=3.6), version: 2.0.5
2023-06-27T16:15:53,239 Found link https://files.pythonhosted.org/packages/91/26/f2f0767a0e72c38d5d17f53117deb8aaafaf58f4ad658cee56cd5158c979/torch_scatter-2.0.6.tar.gz#sha256=2c664656a6c006d5221b2d51ce51eca0bbf39e85a180fdd6d3ad42cb28b5a536 (from https://pypi.org/simple/torch-scatter/) (requires-python:>=3.6), version: 2.0.6
2023-06-27T16:15:53,239 Found link https://files.pythonhosted.org/packages/fa/d1/0bade0c3b9222710528de0458ad48407dab46efd7ad3d4fd1be82b68ac2b/torch_scatter-2.0.7.tar.gz#sha256=369184948c838f756eea10464a3fbf8e103e22dc94d7045dbab85b5748bf85f9 (from https://pypi.org/simple/torch-scatter/) (requires-python:>=3.6), version: 2.0.7
2023-06-27T16:15:53,239 Found link https://files.pythonhosted.org/packages/a9/f0/cc0249cc963e50ea6d00f06a1930f84beebe37cf5ca83fbb50169d7e715a/torch_scatter-2.0.8.tar.gz#sha256=d71aab489b5288a6c96e9f9a7c9e13c54774dcb55a99a40e6cd1aca8be9ef3e6 (from https://pypi.org/simple/torch-scatter/) (requires-python:>=3.6), version: 2.0.8
2023-06-27T16:15:53,239 Found link https://files.pythonhosted.org/packages/1b/a0/6e44e887eb7fff78a9642035fe9662fc22c850a377369a52f308dd553104/torch_scatter-2.0.9.tar.gz#sha256=08f5511d64473badf0a71d156b36dc2b09b9c2f00a7cd373b935b490c477a7f1 (from https://pypi.org/simple/torch-scatter/) (requires-python:>=3.6), version: 2.0.9
2023-06-27T16:15:53,239 Found link https://files.pythonhosted.org/packages/49/f6/2407e1618ec03952a5fe7ebd6e6f7598ede1201ae8b12a96f85f8a03e81e/torch_scatter-2.1.0.tar.gz#sha256=3a7124c2a033552febbdc72407f7d4d8cb6dce465720e84ab831512e81c1d208 (from https://pypi.org/simple/torch-scatter/) (requires-python:>=3.7), version: 2.1.0
2023-06-27T16:15:53,239 Found link https://files.pythonhosted.org/packages/db/ae/3dee934b7118aec8528a6832dbb3cf079e13dd442c4600cae8d29a4f9fea/torch_scatter-2.1.1.tar.gz#sha256=59b6fad2c04f58b4ea46bb56e839edfd421faaa849d5e32ab1290975b9ef1656 (from https://pypi.org/simple/torch-scatter/) (requires-python:>=3.7), version: 2.1.1
2023-06-27T16:15:53,239 Skipping link: not a file: https://pypi.org/simple/torch-scatter/
2023-06-27T16:15:53,240 Given no hashes to check 23 links for project 'torch-scatter': discarding no candidates
2023-06-27T16:15:53,245 Collecting torch_scatter
2023-06-27T16:15:53,245 Created temporary directory: /tmp/pip-unpack-z61lgb4r
2023-06-27T16:15:53,245 Looking up "https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl" in the cache
2023-06-27T16:15:53,271 Current age based on date: 394
2023-06-27T16:15:53,344 https://data.pyg.org:443 "GET /whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl HTTP/1.1" 304 0
2023-06-27T16:15:53,382 Using cached https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (10.2 MB)
2023-06-27T16:15:53,395 Added torch_scatter from https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl to build tracker '/tmp/pip-req-tracker-89zxjtdk'
2023-06-27T16:15:53,395 Removed torch_scatter from https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl from build tracker '/tmp/pip-req-tracker-89zxjtdk'
2023-06-27T16:15:53,396 2 location(s) to search for versions of torch-sparse:
2023-06-27T16:15:53,396 * https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html
2023-06-27T16:15:53,396 * https://pypi.org/simple/torch-sparse/
2023-06-27T16:15:53,396 Fetching project page and analyzing links: https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html
2023-06-27T16:15:53,396 Getting page https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html
2023-06-27T16:15:53,397 Looking up "https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html" in the cache
2023-06-27T16:15:53,397 Request header has "max_age" as 0, cache bypassed
2023-06-27T16:15:53,405 https://pytorch-geometric.com:443 "GET /whl/torch-2.0.1%2Bcu118.html HTTP/1.1" 304 0
2023-06-27T16:15:53,406 Found link https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html), version: 0.6.17+pt20cu118
2023-06-27T16:15:53,407 Fetching project page and analyzing links: https://pypi.org/simple/torch-sparse/
2023-06-27T16:15:53,407 Getting page https://pypi.org/simple/torch-sparse/
2023-06-27T16:15:53,408 Found index url https://pypi.org/simple
2023-06-27T16:15:53,408 Looking up "https://pypi.org/simple/torch-sparse/" in the cache
2023-06-27T16:15:53,408 Request header has "max_age" as 0, cache bypassed
2023-06-27T16:15:53,415 https://pypi.org:443 "GET /simple/torch-sparse/ HTTP/1.1" 304 0
2023-06-27T16:15:53,418 Found link https://files.pythonhosted.org/packages/21/a6/af5865f7bc2dc45ea789ebb35bdf5d84c05e140d7d2ec7e5823d24db176f/torch_sparse-0.1.0.tar.gz#sha256=d774c4b05a96bf09e3c3becd2f48c65ed66b03195a2cfc4992ef57c9a8c6b399 (from https://pypi.org/simple/torch-sparse/), version: 0.1.0
2023-06-27T16:15:53,418 Found link https://files.pythonhosted.org/packages/02/4f/89bcb156022a3960c4db852915c64ea78b4e993e0f8d7a83e60e6819fc11/torch_sparse-0.2.0.tar.gz#sha256=578fdc3522b06c948d43fbc360d0dcde8a89d9a2496ac468592bf3493baedd33 (from https://pypi.org/simple/torch-sparse/), version: 0.2.0
2023-06-27T16:15:53,418 Found link https://files.pythonhosted.org/packages/8f/41/98db80cc9d9345c76445393661ce4dd3e08fc46fb17028e7706612063e4d/torch_sparse-0.2.1.tar.gz#sha256=01346234f0e76103304f8aa1099f22c0904d2fff8b36c5ec0230335149f526bc (from https://pypi.org/simple/torch-sparse/), version: 0.2.1
2023-06-27T16:15:53,418 Found link https://files.pythonhosted.org/packages/73/5b/5b7b6c66148afaa5e2ed8a3e18e109361957d28e67032d92cb282d173f32/torch_sparse-0.2.2.tar.gz#sha256=11e87c0214a4491168f15726ddda6c771b5f34be728f3edbb4add203e46d924d (from https://pypi.org/simple/torch-sparse/), version: 0.2.2
2023-06-27T16:15:53,418 Found link https://files.pythonhosted.org/packages/43/2a/bb2ead5b33c6932937c6c74199ebecd72bd4b3ab224842a50366e5b2af4a/torch_sparse-0.2.3.tar.gz#sha256=47b3f85b0c243d0c98798db722b0f066830f6b8ff9d298a6e2aed0662598e356 (from https://pypi.org/simple/torch-sparse/), version: 0.2.3
2023-06-27T16:15:53,418 Found link https://files.pythonhosted.org/packages/73/72/e374662f6f47d9ac0e082a6d5c18d14e15c52863e89c6bc6957a0d2ed026/torch_sparse-0.2.4.tar.gz#sha256=5cae8b40a5d11b8917e0f4b95034b5842b052f42a089ce59f8c02f2cff00ca55 (from https://pypi.org/simple/torch-sparse/), version: 0.2.4
2023-06-27T16:15:53,418 Found link https://files.pythonhosted.org/packages/b0/0a/2ff678e0d04e524dd2cf990a6202ced8c0ffe3fe6b08e02f25cc9fd27da0/torch_sparse-0.4.0.tar.gz#sha256=bf217539b4f714a1d6fac4d39ace3ad8033871717f44f8f365a2746056b9d805 (from https://pypi.org/simple/torch-sparse/), version: 0.4.0
2023-06-27T16:15:53,418 Found link https://files.pythonhosted.org/packages/c7/3e/aa5449787910283d846a7c739899ccf8c53c914f8a7aee7bc500a32dc091/torch_sparse-0.4.1.tar.gz#sha256=4831fe4b78b86d4dff948d50fec042ef99b98e850495b400189456380ec397d4 (from https://pypi.org/simple/torch-sparse/), version: 0.4.1
2023-06-27T16:15:53,418 Found link https://files.pythonhosted.org/packages/7d/c5/1f73917168aa9816f41e0696f266fa07d0ebfe8d25c3e63a0f08440534b9/torch_sparse-0.4.2.tar.gz#sha256=a652feb1b945995fb863dcbfdaa01de9096d5ed7230380ebf6d262e649eb4123 (from https://pypi.org/simple/torch-sparse/), version: 0.4.2
2023-06-27T16:15:53,418 Found link https://files.pythonhosted.org/packages/08/4e/a268613fa6a92ffbc65b89e66fc8be5590801937185007f0f7bcb75ea21f/torch_sparse-0.4.3.tar.gz#sha256=87b63cb21f091b450271e75d42280c9ef165d61e6ae6dcb983ad2caedfd6eb0f (from https://pypi.org/simple/torch-sparse/), version: 0.4.3
2023-06-27T16:15:53,418 Found link https://files.pythonhosted.org/packages/0e/bf/6242893c898621e7e4756e1ad298e903df6dfae208aec1c32adf8cfd1f7f/torch_sparse-0.4.4.tar.gz#sha256=0c71a15444c56a1117ec200b60aef64121ee5dc8f6f97fbc1ca4c289579d8eb2 (from https://pypi.org/simple/torch-sparse/), version: 0.4.4
2023-06-27T16:15:53,418 Found link https://files.pythonhosted.org/packages/92/80/7137d14dac46d515373d8b3eb47e2565ecfd646ba8658a6a6a1c24e49a2c/torch_sparse-0.5.1.tar.gz#sha256=ab62ffff2c97c5769cdd4aa348ad9b4ed9c4f1f174e155f3845a1864e8771f11 (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.6), version: 0.5.1
2023-06-27T16:15:53,419 Found link https://files.pythonhosted.org/packages/11/17/03bd3a1f056d971e498bd1ad818bbde3dd5409c845ed2ce76186fec65dd2/torch_sparse-0.6.0.tar.gz#sha256=b5c0edc380e51b33e60a97d7580212a7672e5fab11daece50a905deb8e91dfa7 (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.6), version: 0.6.0
2023-06-27T16:15:53,419 Found link https://files.pythonhosted.org/packages/12/9e/66247cbc250e746d06de35c6eb226ec39f4cb4be46adf6ee27527915910b/torch_sparse-0.6.1.tar.gz#sha256=41de6bb39450fc59917c582caa353505d443809af3601c67e4fbaa2284fd1899 (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.6), version: 0.6.1
2023-06-27T16:15:53,419 Found link https://files.pythonhosted.org/packages/dc/65/ee198eae5c517cfc6d05473bf4ec8593830dc61446ffd65fdb7cd3b469ce/torch_sparse-0.6.3.tar.gz#sha256=2d2bb488e14207187f9856d2a9349851e7a3cc37d0f5cf7c7ed930d0fc8c7531 (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.6), version: 0.6.3
2023-06-27T16:15:53,419 Found link https://files.pythonhosted.org/packages/92/d4/7261b5ee3ff529ac3652fda2ad9757c0fb3cde514014a9c26fe71bad38e9/torch_sparse-0.6.4.tar.gz#sha256=8698ef4bb3f9a51b278b5fdd2ed1b2f4389e871c135f6cdf38355f3c96709457 (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.6), version: 0.6.4
2023-06-27T16:15:53,419 Found link https://files.pythonhosted.org/packages/18/0d/a0ab465c6fd30318e8ce2c121424fb09573e46eb16231e6fedb6ddd953f5/torch_sparse-0.6.5.tar.gz#sha256=e457718abdafb65a683a374f17e4bd84bb5d51cdeaa3a1dc364d514f67eaa834 (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.6), version: 0.6.5
2023-06-27T16:15:53,419 Found link https://files.pythonhosted.org/packages/db/d1/968436c29959c321740ee95f781c961f12b2d23f0ecdbdaaf3ccf64ddc94/torch_sparse-0.6.6.tar.gz#sha256=9ee9e76eb2ef144afb82ae512ee768e652c436a38f92e7b90e7d0aa3c6c2814e (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.6), version: 0.6.6
2023-06-27T16:15:53,419 Found link https://files.pythonhosted.org/packages/ce/c0/f5ccc280629765cf1e97b601426cad6170d00603cf9836ba52f85d44ac27/torch_sparse-0.6.7.tar.gz#sha256=f69b2ed35baf2a9853234756a2b19e6f7ce88d2c1f029d1c7ca166d91e1adbd0 (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.6), version: 0.6.7
2023-06-27T16:15:53,419 Found link https://files.pythonhosted.org/packages/3c/dd/f34dce6512a3922948c3ac0cf50cceb2eeafeedd34a278d502eb77d07dc0/torch_sparse-0.6.8.tar.gz#sha256=312fb5ae6e4e575fca4bbc0bd092af85e7679d5b8e53459f24492fc2a073c7b6 (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.6), version: 0.6.8
2023-06-27T16:15:53,419 Found link https://files.pythonhosted.org/packages/9a/86/699eb78ea7ce259da7f9953858ec2a064e4e5f5e6bf7de53aa6c8bb8b9a8/torch_sparse-0.6.9.tar.gz#sha256=089a3200044d0d392a4d0d84803f926da28a44532fe30f4c8d6c34f567680db3 (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.6), version: 0.6.9
2023-06-27T16:15:53,419 Found link https://files.pythonhosted.org/packages/c7/49/c97315cd579a19d4e575ca06dd8f79f43c00c9c38658fbe91116cd7909dd/torch_sparse-0.6.10.tar.gz#sha256=2e2c7a3649d04e19b3b3960c1d7fc0e767017c93587de1e0d6eb7fda613a6b82 (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.6), version: 0.6.10
2023-06-27T16:15:53,420 Found link https://files.pythonhosted.org/packages/5a/81/f66f60ef6ce915ca54a4fcd0c97ec8a1a802312c1774caf329a866ebbf31/torch_sparse-0.6.11.tar.gz#sha256=1d57bc0fc9d9b6cfdc9dcc12017dc371c89c901e5d7a73e6149c8b866eca1267 (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.6), version: 0.6.11
2023-06-27T16:15:53,420 Found link https://files.pythonhosted.org/packages/00/40/208c5b8ae34c89403d9da648c9689465880539d95a4ad570ac9d6f301b72/torch_sparse-0.6.12.tar.gz#sha256=85db85bd45855cde4be093c7e2413b962b21b31151ad7eacd19ca4e2808bced2 (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.6), version: 0.6.12
2023-06-27T16:15:53,420 Found link https://files.pythonhosted.org/packages/ee/44/b4a1d6d7fa67309781005c0e36723dd0bd745fc1a20c9330796055953b10/torch_sparse-0.6.13.tar.gz#sha256=b4896822559f9b47d8b0186d74c94b7449f91db155a57d617fbeae9b722fa1f3 (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.7), version: 0.6.13
2023-06-27T16:15:53,420 Found link https://files.pythonhosted.org/packages/ed/f0/8d198555417336fac1b56c23b50699717cfc743f5d6bd5d1ece59695aa4c/torch_sparse-0.6.14.tar.gz#sha256=36632fa7b219a71d54a6bb245765379ab4d387a694f34ab429a9a9f70879ad66 (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.7), version: 0.6.14
2023-06-27T16:15:53,420 Found link https://files.pythonhosted.org/packages/6d/79/df42a4bf93191ff44d31ba58eb3ec98a02dfb7402fac34852f864c4b3999/torch_sparse-0.6.15.tar.gz#sha256=3a741ae8a7cc19247a44de549fa4d593c4257b5f741e1eb5110b712a14209dd9 (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.7), version: 0.6.15
2023-06-27T16:15:53,420 Found link https://files.pythonhosted.org/packages/88/e8/9e75676a3415d438fdb354b5ee0ffac777eb447fe4924224beef7529ea43/torch_sparse-0.6.16.tar.gz#sha256=7657cfdcac221fb92aa00af7e6032853a7d2cc0d58151d9436485094ab7635ac (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.7), version: 0.6.16
2023-06-27T16:15:53,420 Found link https://files.pythonhosted.org/packages/cb/ff/21d4674bdf232cd7a2bdbbbb04c35ba1cbdf444d4f3331f5d7eb6c5d4a8f/torch_sparse-0.6.17.tar.gz#sha256=06e268dd77f73eb641da8f9383306d7afac6423383c9197b9df120955e2a96bd (from https://pypi.org/simple/torch-sparse/) (requires-python:>=3.7), version: 0.6.17
2023-06-27T16:15:53,420 Skipping link: not a file: https://pypi.org/simple/torch-sparse/
2023-06-27T16:15:53,421 Given no hashes to check 30 links for project 'torch-sparse': discarding no candidates
2023-06-27T16:15:53,426 Collecting torch_sparse
2023-06-27T16:15:53,426 Created temporary directory: /tmp/pip-unpack-uox_8vf5
2023-06-27T16:15:53,427 Looking up "https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp310-cp310-linux_x86_64.whl" in the cache
2023-06-27T16:15:53,438 Current age based on date: 393
2023-06-27T16:15:53,497 https://data.pyg.org:443 "GET /whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp310-cp310-linux_x86_64.whl HTTP/1.1" 304 0
2023-06-27T16:15:53,515 Using cached https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (4.8 MB)
2023-06-27T16:15:53,521 Added torch_sparse from https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp310-cp310-linux_x86_64.whl to build tracker '/tmp/pip-req-tracker-89zxjtdk'
2023-06-27T16:15:53,521 Removed torch_sparse from https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp310-cp310-linux_x86_64.whl from build tracker '/tmp/pip-req-tracker-89zxjtdk'
2023-06-27T16:15:53,522 2 location(s) to search for versions of torch-cluster:
2023-06-27T16:15:53,522 * https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html
2023-06-27T16:15:53,522 * https://pypi.org/simple/torch-cluster/
2023-06-27T16:15:53,522 Fetching project page and analyzing links: https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html
2023-06-27T16:15:53,523 Getting page https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html
2023-06-27T16:15:53,523 Looking up "https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html" in the cache
2023-06-27T16:15:53,523 Request header has "max_age" as 0, cache bypassed
2023-06-27T16:15:53,530 https://pytorch-geometric.com:443 "GET /whl/torch-2.0.1%2Bcu118.html HTTP/1.1" 304 0
2023-06-27T16:15:53,531 Found link https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html), version: 1.6.1+pt20cu118
2023-06-27T16:15:53,532 Fetching project page and analyzing links: https://pypi.org/simple/torch-cluster/
2023-06-27T16:15:53,532 Getting page https://pypi.org/simple/torch-cluster/
2023-06-27T16:15:53,532 Found index url https://pypi.org/simple
2023-06-27T16:15:53,532 Looking up "https://pypi.org/simple/torch-cluster/" in the cache
2023-06-27T16:15:53,533 Request header has "max_age" as 0, cache bypassed
2023-06-27T16:15:53,539 https://pypi.org:443 "GET /simple/torch-cluster/ HTTP/1.1" 304 0
2023-06-27T16:15:53,542 Found link https://files.pythonhosted.org/packages/58/77/1ddc3390129653d1e0e1e0c8063d47a2f40abc888d95b4a2fba774e215df/torch_cluster-0.1.1.tar.gz#sha256=f4f64eabc4c380bff9863d3ce9b93b0a65c7ea6f797f9ee053dc74d7d92ea928 (from https://pypi.org/simple/torch-cluster/), version: 0.1.1
2023-06-27T16:15:53,542 Found link https://files.pythonhosted.org/packages/ac/92/c583aabacb052afed67db146662c23625ad861a74140e338996816a879f4/torch_cluster-0.2.3.tar.gz#sha256=43d9840078f962abfced55043d8320f80c7f91aa7f54398b9ad631ee577bbfb1 (from https://pypi.org/simple/torch-cluster/), version: 0.2.3
2023-06-27T16:15:53,542 Found link https://files.pythonhosted.org/packages/6e/9b/493def262b256290ad6913c9f36b774af6f52d9d46d3fee31b77b3803eb0/torch_cluster-0.2.4.tar.gz#sha256=f421986d71a644b72c69551f09df31eb8657203d59d639aac33192192ed675b5 (from https://pypi.org/simple/torch-cluster/), version: 0.2.4
2023-06-27T16:15:53,542 Found link https://files.pythonhosted.org/packages/8a/2c/ddf6e6fc9c4af6c37a20996100cf6a6427accd7939470bc99071d3487753/torch_cluster-1.0.1.tar.gz#sha256=04cf3ad486eff6cc6069e3d1c18a2acd7662169f36d02a13f3a7adaabfc06b91 (from https://pypi.org/simple/torch-cluster/), version: 1.0.1
2023-06-27T16:15:53,542 Found link https://files.pythonhosted.org/packages/87/9d/e488a5186684632e3e0f14eaec125936cf25a3a24552afd26e7bb426d2ee/torch_cluster-1.0.3.tar.gz#sha256=795264f9e9f36eb44aeb28716d68ea93cd6dc7f75c8e05e0d16eb0597ffcd1a6 (from https://pypi.org/simple/torch-cluster/), version: 1.0.3
2023-06-27T16:15:53,542 Found link https://files.pythonhosted.org/packages/7b/95/bca3179ce501792bf268d37f18cc82577c289fa093bfdcfc26e375019da5/torch_cluster-1.1.1.tar.gz#sha256=e919f64153fd97efe958a509a0a558a31bf5f2dbe2deeff09d300e33d3994b14 (from https://pypi.org/simple/torch-cluster/), version: 1.1.1
2023-06-27T16:15:53,542 Found link https://files.pythonhosted.org/packages/36/b0/25ca8b811059e001f1e3285ac3036b6969fb21350e411c6881ba2b9be3c3/torch_cluster-1.1.2.tar.gz#sha256=082c4e71079cd1bed89da4178b3391361fa6aac5ae2edb783c08fed3da5b93c4 (from https://pypi.org/simple/torch-cluster/), version: 1.1.2
2023-06-27T16:15:53,542 Found link https://files.pythonhosted.org/packages/e2/4f/5205f832d3eef871fe71564aa9fb8504a65be5e95be09800e125e224e634/torch_cluster-1.1.3.tar.gz#sha256=d5c80159f91e329bcc95b316a29ecf466257598680b3b5fb2ea137a585037c78 (from https://pypi.org/simple/torch-cluster/), version: 1.1.3
2023-06-27T16:15:53,542 Found link https://files.pythonhosted.org/packages/d0/e1/495ecc73f1e5534ecbedf1a301557d6c9fc93417467e5107fd9ac54fcbfa/torch_cluster-1.1.4.tar.gz#sha256=a298694afe91f146be3921b8c9da06051958b7598c6e69a9af5833a1af56e7f3 (from https://pypi.org/simple/torch-cluster/), version: 1.1.4
2023-06-27T16:15:53,543 Found link https://files.pythonhosted.org/packages/a6/b3/de9c051d1df504d78542d178231f2ae7d08a411c9ca59219028742886947/torch_cluster-1.1.5.tar.gz#sha256=b67d6c89b71e4146dcfa078cc6a201a1647d888441a9f278b30770f91c7978a1 (from https://pypi.org/simple/torch-cluster/), version: 1.1.5
2023-06-27T16:15:53,543 Found link https://files.pythonhosted.org/packages/96/de/9506fa869cf52edc58c2517b41c0ec1c7678c05b95aff000a509e4238765/torch_cluster-1.2.1.tar.gz#sha256=371b438113bcb7cab1b6931740e9194972f0f7349e1d033437a4196d7d693130 (from https://pypi.org/simple/torch-cluster/), version: 1.2.1
2023-06-27T16:15:53,543 Found link https://files.pythonhosted.org/packages/33/b7/05b9ce9afc76f5709efe04d6344fbed09ea217f916f94e63f2fe9659eb62/torch_cluster-1.2.2.tar.gz#sha256=a1e39e16a7ade806a852117fe16fe2b505fd4bc43bc4207f48fecb0f6b2e1f64 (from https://pypi.org/simple/torch-cluster/), version: 1.2.2
2023-06-27T16:15:53,543 Found link https://files.pythonhosted.org/packages/67/19/a0b1e3a7633ced39d9977ce0b98a1b3e343f0772f4090b0a2d421ac5b56d/torch_cluster-1.2.3.tar.gz#sha256=f8a6b5f47bf6a2a396301d0f4ec0733a650f7a5ae84b08b8625408b8979747ea (from https://pypi.org/simple/torch-cluster/), version: 1.2.3
2023-06-27T16:15:53,543 Found link https://files.pythonhosted.org/packages/32/c8/9b3af10be647326dd807bb2fe7ced8ae4c3fd74178dba884621749afc4d7/torch_cluster-1.2.4.tar.gz#sha256=4e5f8c15b28329b269adecadd64917cb5373c6438a5fdf463f633bd4e73c4ae6 (from https://pypi.org/simple/torch-cluster/), version: 1.2.4
2023-06-27T16:15:53,543 Found link https://files.pythonhosted.org/packages/93/f9/89319a7344e5bcda090fb3996c4271b1fda238ad90401a315c9af1ce4137/torch_cluster-1.3.0.tar.gz#sha256=7b0e1b7061bf8c2754d63a66159f47757ce28b072bc37921fbcc59974eb2d342 (from https://pypi.org/simple/torch-cluster/), version: 1.3.0
2023-06-27T16:15:53,543 Found link https://files.pythonhosted.org/packages/6b/3b/a34740494a1b25cb2ef4ed09e5d5ef6bc75be884f6b25bd93a7acdf03134/torch_cluster-1.4.0.tar.gz#sha256=c256d61f20193b104a2f4c610b4ad95fa3cbaeb72b2ae9bf3d254cb3d573e945 (from https://pypi.org/simple/torch-cluster/), version: 1.4.0
2023-06-27T16:15:53,543 Found link https://files.pythonhosted.org/packages/2f/0c/77453228c248e8071d185940ecb3dd9eca3cac180767bde75b2bc05c0c65/torch_cluster-1.4.1.tar.gz#sha256=e7a900d54cb2dc241c84b1da382f358399880c61290f7be72babf98500496494 (from https://pypi.org/simple/torch-cluster/), version: 1.4.1
2023-06-27T16:15:53,543 Found link https://files.pythonhosted.org/packages/33/38/60ad2fcb735123429b3e0b165a19c80c6273d679b01d6550782abcb314e2/torch_cluster-1.4.2.tar.gz#sha256=ed437ec01f431d0f36398cc321524aac27870cc09e7a5a869726af9c15ac354a (from https://pypi.org/simple/torch-cluster/), version: 1.4.2
2023-06-27T16:15:53,543 Found link https://files.pythonhosted.org/packages/7e/30/b315f136648801433ce6b2724fe3bfaae3c0f8a13282aa58d38ad2a8a3db/torch_cluster-1.4.3a1.tar.gz#sha256=680e47ee41a0cec223c179ce3ea2174de48ac6a277eced453ccadf4bdd2f51c9 (from https://pypi.org/simple/torch-cluster/), version: 1.4.3a1
2023-06-27T16:15:53,543 Found link https://files.pythonhosted.org/packages/49/0d/f7151fb6aad5c9b0e032e46c0678e0404870de4add35b0723fc2a5c4af35/torch_cluster-1.4.3.tar.gz#sha256=340eaf9e31a7a0618f2c3d61c480e1d74466c930827f10fee86d11d8c5b85cba (from https://pypi.org/simple/torch-cluster/), version: 1.4.3
2023-06-27T16:15:53,543 Found link https://files.pythonhosted.org/packages/bd/5f/01c5799cd1f81f9956f03a0e1d9a861e020a598dd411d9bd3c3c1dd5b8a4/torch_cluster-1.4.4.tar.gz#sha256=7907f3f270116cb299bdd4f88de497a85b3b34cf127910ffe0a6131e16620123 (from https://pypi.org/simple/torch-cluster/), version: 1.4.4
2023-06-27T16:15:53,543 Found link https://files.pythonhosted.org/packages/c3/70/1d827d6fd1e03bb5ae84852dd0070c6574105c37e7b935284f6e990932db/torch_cluster-1.4.5.tar.gz#sha256=cf5b9363d82173bb26bb966ba93712c3262765a3a4d25c003479732a9260c257 (from https://pypi.org/simple/torch-cluster/), version: 1.4.5
2023-06-27T16:15:53,543 Found link https://files.pythonhosted.org/packages/a6/cf/6f6c79ce98346cc3ef07f835dbf4cf483a37b88e2974733a22bac148ea0e/torch_cluster-1.5.2.tar.gz#sha256=3ab3b77d424d749993482bc79fa673d0e3d444159118a41e37a9fd4a6292d11a (from https://pypi.org/simple/torch-cluster/) (requires-python:>=3.6), version: 1.5.2
2023-06-27T16:15:53,544 Found link https://files.pythonhosted.org/packages/4e/72/df7533bf9362e400399b1438e6a6ecf2ceded65bd5216da148143b43fa83/torch_cluster-1.5.3.tar.gz#sha256=c2484d14f68d1d6f0d302a0ca4811b84cc4c8800a14aef127539629375723f65 (from https://pypi.org/simple/torch-cluster/) (requires-python:>=3.6), version: 1.5.3
2023-06-27T16:15:53,544 Found link https://files.pythonhosted.org/packages/08/8b/b483508812fe2242ddf645605ee720822943877b11f820ece1dba5c40fc8/torch_cluster-1.5.4.tar.gz#sha256=000f217e6bb2ef89e2403b27fe7c4b2c1f7fbacf781790b194f712b46d648a0c (from https://pypi.org/simple/torch-cluster/) (requires-python:>=3.6), version: 1.5.4
2023-06-27T16:15:53,544 Found link https://files.pythonhosted.org/packages/49/6e/85b9cd8bd984d9178b731bbb26e780c576cf64e4643675ac56eb93a9d8de/torch_cluster-1.5.5.tar.gz#sha256=e9ef5d3a9376537275137f33df7d30bac7019311434dd2fa3124f53dda1e06ff (from https://pypi.org/simple/torch-cluster/) (requires-python:>=3.6), version: 1.5.5
2023-06-27T16:15:53,544 Found link https://files.pythonhosted.org/packages/59/1b/a6266f42bbf485eae4b691ec24302c3e7eae3dbf2a34aec3cb57d96a2bf8/torch_cluster-1.5.6.tar.gz#sha256=323ccc48eeb8c66929158d912124997b37116ee5c182077bdf4a25989f4fd3b3 (from https://pypi.org/simple/torch-cluster/) (requires-python:>=3.6), version: 1.5.6
2023-06-27T16:15:53,544 Found link https://files.pythonhosted.org/packages/ff/78/66d8a75aea9d671dc25a7368fd6e86d1e43c4c47c3dd3d68df16dde57837/torch_cluster-1.5.7.tar.gz#sha256=62a3ec1bebadda1a4a2c867203f4c957b9c0b9d11ffb03b40b8ea9f95a0a4d3b (from https://pypi.org/simple/torch-cluster/) (requires-python:>=3.6), version: 1.5.7
2023-06-27T16:15:53,544 Found link https://files.pythonhosted.org/packages/ff/39/6524367aed276171ba66675b25b368c1522e1d35e17b96ee4ff4025e1d98/torch_cluster-1.5.8.tar.gz#sha256=a0a32f63faac40a026ab1e9da31f6babdb4d937e53be40bd1c91d9b5a286eee6 (from https://pypi.org/simple/torch-cluster/) (requires-python:>=3.6), version: 1.5.8
2023-06-27T16:15:53,544 Found link https://files.pythonhosted.org/packages/4b/27/2f38017ae386ba27c13efe6a87eca7c3c58766c3117c86e0fa2c3f7562a9/torch_cluster-1.5.9.tar.gz#sha256=96209e9f3f073c8e7fe91fbf7dd2cdd8655622d14dfc95a7618b4893a658dca5 (from https://pypi.org/simple/torch-cluster/) (requires-python:>=3.6), version: 1.5.9
2023-06-27T16:15:53,544 Found link https://files.pythonhosted.org/packages/12/4a/4c4c8af938bce77ef6737de22d9d4dfc393412730a4f1550d14c696d09b5/torch_cluster-1.6.0.tar.gz#sha256=249c1bd8c33a887b22bf569a59d0868545804032123594dd8c76ba1885859c39 (from https://pypi.org/simple/torch-cluster/) (requires-python:>=3.7), version: 1.6.0
2023-06-27T16:15:53,544 Found link https://files.pythonhosted.org/packages/5f/e8/0e6b8b8a2889b5860da15fa704ff081b3bb7002cd8ec086f5834244ed591/torch_cluster-1.6.1.tar.gz#sha256=a760e0b4ba71b00d9d908bb6f834aa28f055783ee5af9aecc3f3f94853535f72 (from https://pypi.org/simple/torch-cluster/) (requires-python:>=3.7), version: 1.6.1
2023-06-27T16:15:53,544 Skipping link: not a file: https://pypi.org/simple/torch-cluster/
2023-06-27T16:15:53,545 Given no hashes to check 32 links for project 'torch-cluster': discarding no candidates
2023-06-27T16:15:53,550 Collecting torch_cluster
2023-06-27T16:15:53,550 Created temporary directory: /tmp/pip-unpack-88awembc
2023-06-27T16:15:53,551 Looking up "https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl" in the cache
2023-06-27T16:15:53,558 Current age based on date: 393
2023-06-27T16:15:53,599 https://data.pyg.org:443 "GET /whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl HTTP/1.1" 304 0
2023-06-27T16:15:53,606 Using cached https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (3.3 MB)
2023-06-27T16:15:53,610 Added torch_cluster from https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl to build tracker '/tmp/pip-req-tracker-89zxjtdk'
2023-06-27T16:15:53,610 Removed torch_cluster from https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl from build tracker '/tmp/pip-req-tracker-89zxjtdk'
2023-06-27T16:15:53,611 2 location(s) to search for versions of torch-spline-conv:
2023-06-27T16:15:53,611 * https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html
2023-06-27T16:15:53,611 * https://pypi.org/simple/torch-spline-conv/
2023-06-27T16:15:53,611 Fetching project page and analyzing links: https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html
2023-06-27T16:15:53,611 Getting page https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html
2023-06-27T16:15:53,612 Looking up "https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html" in the cache
2023-06-27T16:15:53,612 Request header has "max_age" as 0, cache bypassed
2023-06-27T16:15:53,619 https://pytorch-geometric.com:443 "GET /whl/torch-2.0.1%2Bcu118.html HTTP/1.1" 304 0
2023-06-27T16:15:53,621 Found link https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html), version: 1.2.2+pt20cu118
2023-06-27T16:15:53,622 Fetching project page and analyzing links: https://pypi.org/simple/torch-spline-conv/
2023-06-27T16:15:53,622 Getting page https://pypi.org/simple/torch-spline-conv/
2023-06-27T16:15:53,622 Found index url https://pypi.org/simple
2023-06-27T16:15:53,622 Looking up "https://pypi.org/simple/torch-spline-conv/" in the cache
2023-06-27T16:15:53,622 Request header has "max_age" as 0, cache bypassed
2023-06-27T16:15:53,629 https://pypi.org:443 "GET /simple/torch-spline-conv/ HTTP/1.1" 304 0
2023-06-27T16:15:53,631 Found link https://files.pythonhosted.org/packages/43/48/02fd06eca47d38efc031b34875c2e7453faab7bde7c02b2669957d230693/torch_spline_conv-0.1.0.tar.gz#sha256=b1d7bceecffb4bc394d9f5df57b56fbff95867aeb778588a054e95a6ba5cd610 (from https://pypi.org/simple/torch-spline-conv/), version: 0.1.0
2023-06-27T16:15:53,631 Found link https://files.pythonhosted.org/packages/99/a6/19a54aaaf507960814af5b6ec3d6916497d54a9345d0b64a98764465fddc/torch_spline_conv-1.0.0.tar.gz#sha256=72950ae9cc15dd00d0977ffca115af0e59c10f1dbac33dd800307fef2b5808c3 (from https://pypi.org/simple/torch-spline-conv/), version: 1.0.0
2023-06-27T16:15:53,631 Found link https://files.pythonhosted.org/packages/4a/e9/973d572b69f8fef3b08d86f77312a75ab4c00ffe8d3582ae09b433b34b8a/torch_spline_conv-1.0.1.tar.gz#sha256=6be33fab8402950b2ddc1dec950d0b5d4c6f183bcf53bca2534a03eb4fd5801b (from https://pypi.org/simple/torch-spline-conv/), version: 1.0.1
2023-06-27T16:15:53,631 Found link https://files.pythonhosted.org/packages/bc/ff/4e834a74fd180f87f6f9aedcfd876cca4c6fa706afa31e9541838f6958d1/torch_spline_conv-1.0.3.tar.gz#sha256=a0be3bc9847458ca92146c2da754dbd2f910be426414757256416e507240da88 (from https://pypi.org/simple/torch-spline-conv/), version: 1.0.3
2023-06-27T16:15:53,631 Found link https://files.pythonhosted.org/packages/1b/d2/98328ef2395b70b9795ddbd091398e49e918f8892d1ea8dad869550b684b/torch_spline_conv-1.0.4.tar.gz#sha256=26e2bb0832d45d185f2e7b38569e64e7f70af8ca2a8b05663972f261ba76a978 (from https://pypi.org/simple/torch-spline-conv/), version: 1.0.4
2023-06-27T16:15:53,631 Found link https://files.pythonhosted.org/packages/92/86/f086f96e09654106ad527f4b03ac6188c1299a9fe555fc39c663b155a05a/torch_spline_conv-1.0.5.tar.gz#sha256=fffa87c94703e4c43a46bd8ec149cd6c125586ebd1f3c04fec48d1f6b60a4f3c (from https://pypi.org/simple/torch-spline-conv/), version: 1.0.5
2023-06-27T16:15:53,631 Found link https://files.pythonhosted.org/packages/9a/6d/b34721af4bb907814a41a1e0e5e426c97aee644efef6877ed112bfb3d81c/torch_spline_conv-1.0.6.tar.gz#sha256=a8bd72bac7dc078ddfbf22789c5fcdf159901494c626344d67ad203e7f8c9b1e (from https://pypi.org/simple/torch-spline-conv/), version: 1.0.6
2023-06-27T16:15:53,632 Found link https://files.pythonhosted.org/packages/3c/dd/daa9d0b7b2ede913e573876ae286a58ec296678858f2814ff6d6789b234f/torch_spline_conv-1.1.0.tar.gz#sha256=e6029526205d1f7cb535389bebd81decf0649a20ea6a67688c02bd335a7f9339 (from https://pypi.org/simple/torch-spline-conv/), version: 1.1.0
2023-06-27T16:15:53,632 Found link https://files.pythonhosted.org/packages/5e/77/5420584cdb1514c580722ca4bc482a509105d64b7c70246e9dc4a3e6d3c5/torch_spline_conv-1.1.1.tar.gz#sha256=622e2f3763e41044f6364ff7a4c6a417cb73c7e6a6edec763abd14847863ebd2 (from https://pypi.org/simple/torch-spline-conv/), version: 1.1.1
2023-06-27T16:15:53,632 Found link https://files.pythonhosted.org/packages/b9/8c/b888f63e797af27a9dc50580f82e2630f32b151e2f70b88e47841f9a0132/torch_spline_conv-1.2.0.tar.gz#sha256=b7a1788004f6c6143d47040f2dd7d8a579a0c69a0cb0b5d7537416bf37c082a5 (from https://pypi.org/simple/torch-spline-conv/) (requires-python:>=3.6), version: 1.2.0
2023-06-27T16:15:53,632 Found link https://files.pythonhosted.org/packages/80/f8/4d010376565c59b3c397b1cf103edc4e9b2ed087c2bbd3677f0a92930d75/torch_spline_conv-1.2.1.tar.gz#sha256=364f658e0ecb4c5263a728c2961553e022fc44c11a633d5a1bf986cf169ab438 (from https://pypi.org/simple/torch-spline-conv/) (requires-python:>=3.6), version: 1.2.1
2023-06-27T16:15:53,632 Found link https://files.pythonhosted.org/packages/a0/50/5f80c47bf09b561ded0981b088ab0064424843696aa35b3b83afde421e56/torch_spline_conv-1.2.2.tar.gz#sha256=ed45a81da29f774665dbdd4709d7e534cdf16d2e7006dbd06957f35bd09661b2 (from https://pypi.org/simple/torch-spline-conv/) (requires-python:>=3.7), version: 1.2.2
2023-06-27T16:15:53,632 Skipping link: not a file: https://pypi.org/simple/torch-spline-conv/
2023-06-27T16:15:53,632 Given no hashes to check 13 links for project 'torch-spline-conv': discarding no candidates
2023-06-27T16:15:53,638 Collecting torch_spline_conv
2023-06-27T16:15:53,638 Created temporary directory: /tmp/pip-unpack-0c7zpm0t
2023-06-27T16:15:53,638 Looking up "https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp310-cp310-linux_x86_64.whl" in the cache
2023-06-27T16:15:53,639 Current age based on date: 393
2023-06-27T16:15:53,682 https://data.pyg.org:443 "GET /whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp310-cp310-linux_x86_64.whl HTTP/1.1" 304 0
2023-06-27T16:15:53,684 Using cached https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (884 kB)
2023-06-27T16:15:53,685 Added torch_spline_conv from https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp310-cp310-linux_x86_64.whl to build tracker '/tmp/pip-req-tracker-89zxjtdk'
2023-06-27T16:15:53,685 Removed torch_spline_conv from https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp310-cp310-linux_x86_64.whl from build tracker '/tmp/pip-req-tracker-89zxjtdk'
2023-06-27T16:15:53,693 Requirement already satisfied: scipy in /usr/lib/python3/dist-packages (from torch_sparse) (1.8.0)
2023-06-27T16:15:53,697 Created temporary directory: /tmp/pip-unpack-hrwjqk_3
2023-06-27T16:15:54,280 Installing collected packages: torch_spline_conv, torch_sparse, torch_scatter, torch_cluster, pyg_lib
2023-06-27T16:15:54,716 Successfully installed pyg_lib-0.2.0+pt20cu118 torch_cluster-1.6.1+pt20cu118 torch_scatter-2.1.1+pt20cu118 torch_sparse-0.6.17+pt20cu118 torch_spline_conv-1.2.2+pt20cu118
2023-06-27T16:15:54,716 Removed build tracker: '/tmp/pip-req-tracker-89zxjtdk'
2023-06-27T16:16:57,060 Using pip 22.0.2 from /usr/lib/python3/dist-packages/pip (python 3.10)
2023-06-27T16:16:57,060 Defaulting to user installation because normal site-packages is not writeable
2023-06-27T16:16:57,203 Created temporary directory: /tmp/pip-ephem-wheel-cache-8bj247fe
2023-06-27T16:16:57,204 Created temporary directory: /tmp/pip-req-tracker-tosfiyh_
2023-06-27T16:16:57,204 Initialized build tracking at /tmp/pip-req-tracker-tosfiyh_
2023-06-27T16:16:57,204 Created build tracker: /tmp/pip-req-tracker-tosfiyh_
2023-06-27T16:16:57,204 Entered build tracker: /tmp/pip-req-tracker-tosfiyh_
2023-06-27T16:16:57,204 Created temporary directory: /tmp/pip-install-0t7578uk
2023-06-27T16:16:57,212 Looking in links: https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html
2023-06-27T16:16:57,213 2 location(s) to search for versions of pyg-lib:
2023-06-27T16:16:57,213 * https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html
2023-06-27T16:16:57,213 * https://pypi.org/simple/pyg-lib/
2023-06-27T16:16:57,213 Fetching project page and analyzing links: https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html
2023-06-27T16:16:57,214 Getting page https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html
2023-06-27T16:16:57,215 Looking up "https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html" in the cache
2023-06-27T16:16:57,215 Request header has "max_age" as 0, cache bypassed
2023-06-27T16:16:57,216 Starting new HTTPS connection (1): pytorch-geometric.com:443
2023-06-27T16:16:57,386 https://pytorch-geometric.com:443 "GET /whl/torch-2.0.1%2Bcu118.html HTTP/1.1" 304 0
2023-06-27T16:16:57,397 Found link https://data.pyg.org/whl/torch-2.0.0%2Bcu118/pyg_lib-0.2.0%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html), version: 0.2.0+pt20cu118
2023-06-27T16:16:57,398 Skipping link: none of the wheel's tags (cp311-cp311-linux_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/pyg_lib-0.2.0%2Bpt20cu118-cp311-cp311-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:16:57,398 Skipping link: none of the wheel's tags (cp38-cp38-linux_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/pyg_lib-0.2.0%2Bpt20cu118-cp38-cp38-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:16:57,398 Skipping link: none of the wheel's tags (cp39-cp39-linux_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/pyg_lib-0.2.0%2Bpt20cu118-cp39-cp39-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:16:57,398 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:16:57,398 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp310-cp310-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:16:57,398 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp311-cp311-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:16:57,398 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp311-cp311-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:16:57,398 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp38-cp38-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:16:57,399 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp38-cp38-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:16:57,399 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp39-cp39-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:16:57,399 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_cluster-1.6.1%2Bpt20cu118-cp39-cp39-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:16:57,399 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:16:57,399 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp310-cp310-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:16:57,399 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp311-cp311-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:16:57,399 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp311-cp311-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:16:57,399 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp38-cp38-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:16:57,399 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp38-cp38-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:16:57,399 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp39-cp39-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:16:57,399 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp39-cp39-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:16:57,400 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:16:57,400 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp310-cp310-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:16:57,400 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp311-cp311-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:16:57,400 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp311-cp311-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:16:57,400 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp38-cp38-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:16:57,400 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp38-cp38-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:16:57,400 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp39-cp39-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:16:57,400 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp39-cp39-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:16:57,400 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:16:57,400 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp310-cp310-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:16:57,400 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp311-cp311-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:16:57,401 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp311-cp311-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:16:57,401 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp38-cp38-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:16:57,401 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp38-cp38-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:16:57,401 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp39-cp39-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:16:57,401 Skipping link: wrong project name (not pyg-lib): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_spline_conv-1.2.2%2Bpt20cu118-cp39-cp39-win_amd64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:16:57,401 Fetching project page and analyzing links: https://pypi.org/simple/pyg-lib/
2023-06-27T16:16:57,401 Getting page https://pypi.org/simple/pyg-lib/
2023-06-27T16:16:57,401 Found index url https://pypi.org/simple
2023-06-27T16:16:57,402 Looking up "https://pypi.org/simple/pyg-lib/" in the cache
2023-06-27T16:16:57,402 Request header has "max_age" as 0, cache bypassed
2023-06-27T16:16:57,402 Starting new HTTPS connection (1): pypi.org:443
2023-06-27T16:16:57,587 https://pypi.org:443 "GET /simple/pyg-lib/ HTTP/1.1" 404 13
2023-06-27T16:16:57,588 Status code 404 not in (200, 203, 300, 301, 308)
2023-06-27T16:16:57,588 Could not fetch URL https://pypi.org/simple/pyg-lib/: 404 Client Error: Not Found for url: https://pypi.org/simple/pyg-lib/ - skipping
2023-06-27T16:16:57,588 Skipping link: unsupported archive format: .html: https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html
2023-06-27T16:16:57,588 Skipping link: not a file: https://pypi.org/simple/pyg-lib/
2023-06-27T16:16:57,589 Given no hashes to check 1 links for project 'pyg-lib': discarding no candidates
2023-06-27T16:16:57,595 Collecting pyg_lib
2023-06-27T16:16:57,595 Created temporary directory: /tmp/pip-unpack-grse4r8h
2023-06-27T16:16:57,596 Looking up "https://data.pyg.org/whl/torch-2.0.0%2Bcu118/pyg_lib-0.2.0%2Bpt20cu118-cp310-cp310-linux_x86_64.whl" in the cache
2023-06-27T16:16:57,605 Current age based on date: 83
2023-06-27T16:16:57,613 Starting new HTTPS connection (1): data.pyg.org:443
2023-06-27T16:16:57,793 https://data.pyg.org:443 "GET /whl/torch-2.0.0%2Bcu118/pyg_lib-0.2.0%2Bpt20cu118-cp310-cp310-linux_x86_64.whl HTTP/1.1" 304 0
2023-06-27T16:16:57,806 Using cached https://data.pyg.org/whl/torch-2.0.0%2Bcu118/pyg_lib-0.2.0%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (1.8 MB)
2023-06-27T16:16:57,810 Added pyg_lib from https://data.pyg.org/whl/torch-2.0.0%2Bcu118/pyg_lib-0.2.0%2Bpt20cu118-cp310-cp310-linux_x86_64.whl to build tracker '/tmp/pip-req-tracker-tosfiyh_'
2023-06-27T16:16:57,810 Removed pyg_lib from https://data.pyg.org/whl/torch-2.0.0%2Bcu118/pyg_lib-0.2.0%2Bpt20cu118-cp310-cp310-linux_x86_64.whl from build tracker '/tmp/pip-req-tracker-tosfiyh_'
2023-06-27T16:16:57,812 2 location(s) to search for versions of torch-scatter:
2023-06-27T16:16:57,812 * https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html
2023-06-27T16:16:57,812 * https://pypi.org/simple/torch-scatter/
2023-06-27T16:16:57,812 Fetching project page and analyzing links: https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html
2023-06-27T16:16:57,812 Getting page https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html
2023-06-27T16:16:57,813 Looking up "https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html" in the cache
2023-06-27T16:16:57,813 Request header has "max_age" as 0, cache bypassed
2023-06-27T16:16:57,821 https://pytorch-geometric.com:443 "GET /whl/torch-2.0.1%2Bcu118.html HTTP/1.1" 304 0
2023-06-27T16:16:57,823 Skipping link: wrong project name (not torch-scatter): https://data.pyg.org/whl/torch-2.0.0%2Bcu118/pyg_lib-0.2.0%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html)
2023-06-27T16:16:57,824 Found link https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html), version: 2.1.1+pt20cu118
2023-06-27T16:16:57,825 Fetching project page and analyzing links: https://pypi.org/simple/torch-scatter/
2023-06-27T16:16:57,825 Getting page https://pypi.org/simple/torch-scatter/
2023-06-27T16:16:57,826 Found index url https://pypi.org/simple
2023-06-27T16:16:57,826 Looking up "https://pypi.org/simple/torch-scatter/" in the cache
2023-06-27T16:16:57,826 Request header has "max_age" as 0, cache bypassed
2023-06-27T16:16:57,833 https://pypi.org:443 "GET /simple/torch-scatter/ HTTP/1.1" 304 0
2023-06-27T16:16:57,837 Found link https://files.pythonhosted.org/packages/29/96/566ac314e796d4b07209a3b88cc7a8d2e8582d55819e33f72e6c0e8d8216/torch_scatter-0.3.0.tar.gz#sha256=9e5e5a6efa4ef45f584e8611f83690d799370dd122b862646751ae112b685b50 (from https://pypi.org/simple/torch-scatter/), version: 0.3.0
2023-06-27T16:16:57,837 Found link https://files.pythonhosted.org/packages/6a/b0/ecffacddf573c147c70c6e43ce05d24f007155ce3fb436959d3d2a24da46/torch_scatter-1.0.2.tar.gz#sha256=ccda794c25265b3450206b7fb0bf74f16a0b45f3f72d9547a42e44648a32faee (from https://pypi.org/simple/torch-scatter/), version: 1.0.2
2023-06-27T16:16:57,837 Found link https://files.pythonhosted.org/packages/08/09/07b106f3e74246f4ecf6517013a053b6dd7486c4f889d81f39adc662431f/torch_scatter-1.0.3.tar.gz#sha256=e626993194819ba65cdf89a52fbbb7780569d9e157bc63dbef13ead6b7a33930 (from https://pypi.org/simple/torch-scatter/), version: 1.0.3
2023-06-27T16:16:57,837 Found link https://files.pythonhosted.org/packages/2d/70/df2bc259d9606f00854ca43b6839f9047ec44900563435e0067584c93864/torch_scatter-1.0.4.tar.gz#sha256=ec004d687e47da9d5477407849d815629fc8b571ee87aeeebf6af8ed6f16defc (from https://pypi.org/simple/torch-scatter/), version: 1.0.4
2023-06-27T16:16:57,837 Found link https://files.pythonhosted.org/packages/2f/97/c50a6aeaedc6924180c6f5810d2a7405ce11aa9b82ba4284badad549d665/torch_scatter-1.1.0.tar.gz#sha256=e534cc2ecb2f9d9b559b1513cd411737d26ea5585d1d65ff571fec55f42a49de (from https://pypi.org/simple/torch-scatter/), version: 1.1.0
2023-06-27T16:16:57,837 Found link https://files.pythonhosted.org/packages/91/5f/eb1d3ef3810cb1165859d40db4d9ee6d7f1dfef97d7e5c34010055f43d95/torch_scatter-1.1.1.tar.gz#sha256=9db7f2c0a5cddf6cfde633e33db7c2c94eaab163e9f8edb46460d6414cc97917 (from https://pypi.org/simple/torch-scatter/), version: 1.1.1
2023-06-27T16:16:57,837 Found link https://files.pythonhosted.org/packages/d4/83/67eeea00c2db1959e2ff95d8680dbd756977bfab254bda8658f09dc3bc11/torch_scatter-1.1.2.tar.gz#sha256=766c2476f5da5ffc25fa8e249ccf50f594031cdce3922abb23559e8e3b14337a (from https://pypi.org/simple/torch-scatter/), version: 1.1.2
2023-06-27T16:16:57,837 Found link https://files.pythonhosted.org/packages/07/c0/f7ac424496f4a3bcb31aa993fba29077a6d42fc2624c66e90b58a566a98e/torch_scatter-1.2.0.tar.gz#sha256=3a0259105d07d264c740eec8e4267260a5c144cf55472abd26022fff4fd73281 (from https://pypi.org/simple/torch-scatter/), version: 1.2.0
2023-06-27T16:16:57,837 Found link https://files.pythonhosted.org/packages/24/b7/680c3b392a4b55a0ebfb480aabb0d5c188e94bb21790104175c8cd614947/torch_scatter-1.3.0.tar.gz#sha256=bf7d561b8ef12b39a99f5797c90b989a0ce2c3ee4de74dff3b170f2d8566e1d4 (from https://pypi.org/simple/torch-scatter/), version: 1.3.0
2023-06-27T16:16:57,837 Found link https://files.pythonhosted.org/packages/35/d4/750403a8aa32cdb3d2d05849c6a10e4e0604de5e0cc94b81a0d0d69a75f3/torch_scatter-1.3.1.tar.gz#sha256=54cbad248350165ddc921ded3fe7a69be5d30c6536273a1a3282e375289f86ec (from https://pypi.org/simple/torch-scatter/), version: 1.3.1
2023-06-27T16:16:57,838 Found link https://files.pythonhosted.org/packages/30/d9/1d5fd4d183dabd9e0a1f7008ecf83318432359f4cc27480e3f2212f44d9c/torch_scatter-1.3.2.tar.gz#sha256=890e8f9da2d57431912182960b71bf6c56397de42c2464907a6e9c583164bf06 (from https://pypi.org/simple/torch-scatter/), version: 1.3.2
2023-06-27T16:16:57,838 Found link https://files.pythonhosted.org/packages/b8/c3/8bad887ffa55c86f120ef5ae252dc0e357b3bd956d9fbf45242bacc46290/torch_scatter-1.4.0.tar.gz#sha256=5999ef256154e5a99445118c1a53f95cf0f95ef7b5cd8d3b256101125479cc2e (from https://pypi.org/simple/torch-scatter/), version: 1.4.0
2023-06-27T16:16:57,838 Found link https://files.pythonhosted.org/packages/28/f7/fa4e61587169924203a32416f7835939fdd79994eaa429b4f8ef8f0e07e2/torch_scatter-2.0.2.tar.gz#sha256=49d3059b7be93d3f2c328fdc6daa3a8479e3dc4a50c8247aef913177122db671 (from https://pypi.org/simple/torch-scatter/), version: 2.0.2
2023-06-27T16:16:57,838 Found link https://files.pythonhosted.org/packages/36/2a/ef3d841ec577e2231662ef86af983c6c7c7d509a0e1d9f12949d0218b492/torch_scatter-2.0.3.tar.gz#sha256=1c4b9cb0f6a195c20d8c4b6230d086cae6965b7eb08f80bd2ec050a094b8e563 (from https://pypi.org/simple/torch-scatter/) (requires-python:>=3.6), version: 2.0.3
2023-06-27T16:16:57,838 Found link https://files.pythonhosted.org/packages/98/a9/47cd92673b6ba251240d587815c763baac2099b07bb76fecdb3b7ae5cece/torch_scatter-2.0.4.tar.gz#sha256=db6c9eca919b86f3eb6102dd0e1215af72e39ed3a4e8d142e6a21d3f20d5c244 (from https://pypi.org/simple/torch-scatter/) (requires-python:>=3.6), version: 2.0.4
2023-06-27T16:16:57,839 Found link https://files.pythonhosted.org/packages/01/45/cd93ed3227248773ba8bc4b3beaa04e8bddb127a793a41bad875369951b3/torch_scatter-2.0.5.tar.gz#sha256=148fbe634fb9e9465dbde2ab337138f63650ed8abbac42bb3f565e3fe92e9b2f (from https://pypi.org/simple/torch-scatter/) (requires-python:>=3.6), version: 2.0.5
2023-06-27T16:16:57,839 Found link https://files.pythonhosted.org/packages/91/26/f2f0767a0e72c38d5d17f53117deb8aaafaf58f4ad658cee56cd5158c979/torch_scatter-2.0.6.tar.gz#sha256=2c664656a6c006d5221b2d51ce51eca0bbf39e85a180fdd6d3ad42cb28b5a536 (from https://pypi.org/simple/torch-scatter/) (requires-python:>=3.6), version: 2.0.6
2023-06-27T16:16:57,839 Found link https://files.pythonhosted.org/packages/fa/d1/0bade0c3b9222710528de0458ad48407dab46efd7ad3d4fd1be82b68ac2b/torch_scatter-2.0.7.tar.gz#sha256=369184948c838f756eea10464a3fbf8e103e22dc94d7045dbab85b5748bf85f9 (from https://pypi.org/simple/torch-scatter/) (requires-python:>=3.6), version: 2.0.7
2023-06-27T16:16:57,839 Found link https://files.pythonhosted.org/packages/a9/f0/cc0249cc963e50ea6d00f06a1930f84beebe37cf5ca83fbb50169d7e715a/torch_scatter-2.0.8.tar.gz#sha256=d71aab489b5288a6c96e9f9a7c9e13c54774dcb55a99a40e6cd1aca8be9ef3e6 (from https://pypi.org/simple/torch-scatter/) (requires-python:>=3.6), version: 2.0.8
2023-06-27T16:16:57,839 Found link https://files.pythonhosted.org/packages/1b/a0/6e44e887eb7fff78a9642035fe9662fc22c850a377369a52f308dd553104/torch_scatter-2.0.9.tar.gz#sha256=08f5511d64473badf0a71d156b36dc2b09b9c2f00a7cd373b935b490c477a7f1 (from https://pypi.org/simple/torch-scatter/) (requires-python:>=3.6), version: 2.0.9
2023-06-27T16:16:57,839 Found link https://files.pythonhosted.org/packages/49/f6/2407e1618ec03952a5fe7ebd6e6f7598ede1201ae8b12a96f85f8a03e81e/torch_scatter-2.1.0.tar.gz#sha256=3a7124c2a033552febbdc72407f7d4d8cb6dce465720e84ab831512e81c1d208 (from https://pypi.org/simple/torch-scatter/) (requires-python:>=3.7), version: 2.1.0
2023-06-27T16:16:57,840 Found link https://files.pythonhosted.org/packages/db/ae/3dee934b7118aec8528a6832dbb3cf079e13dd442c4600cae8d29a4f9fea/torch_scatter-2.1.1.tar.gz#sha256=59b6fad2c04f58b4ea46bb56e839edfd421faaa849d5e32ab1290975b9ef1656 (from https://pypi.org/simple/torch-scatter/) (requires-python:>=3.7), version: 2.1.1
2023-06-27T16:16:57,840 Skipping link: not a file: https://pypi.org/simple/torch-scatter/
2023-06-27T16:16:57,840 Given no hashes to check 23 links for project 'torch-scatter': discarding no candidates
2023-06-27T16:16:57,848 Collecting torch_scatter
2023-06-27T16:16:57,848 Created temporary directory: /tmp/pip-unpack-oafrehz1
2023-06-27T16:16:57,849 Looking up "https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl" in the cache
2023-06-27T16:16:57,885 Current age based on date: 82
2023-06-27T16:16:57,986 https://data.pyg.org:443 "GET /whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl HTTP/1.1" 304 0
2023-06-27T16:16:58,027 Using cached https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (10.2 MB)
2023-06-27T16:16:58,040 Added torch_scatter from https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl to build tracker '/tmp/pip-req-tracker-tosfiyh_'
2023-06-27T16:16:58,040 Removed torch_scatter from https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_scatter-2.1.1%2Bpt20cu118-cp310-cp310-linux_x86_64.whl from build tracker '/tmp/pip-req-tracker-tosfiyh_'
2023-06-27T16:16:58,041 2 location(s) to search for versions of torch-sparse:
2023-06-27T16:16:58,041 * https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html
2023-06-27T16:16:58,041 * https://pypi.org/simple/torch-sparse/
2023-06-27T16:16:58,041 Fetching project page and analyzing links: https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html
2023-06-27T16:16:58,041 Getting page https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html
2023-06-27T16:16:58,042 Looking up "https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html" in the cache
2023-06-27T16:16:58,042 Request header has "max_age" as 0, cache bypassed
2023-06-27T16:16:58,050 https://pytorch-geometric.com:443 "GET /whl/torch-2.0.1%2Bcu118.html HTTP/1.1" 304 0
2023-06-27T16:16:58,052 Found link https://data.pyg.org/whl/torch-2.0.0%2Bcu118/torch_sparse-0.6.17%2Bpt20cu118-cp310-cp310-linux_x86_64.whl (from https://pytorch-geometric.com/whl/torch-2.0.1%2Bcu118.html), version: 0.6.17+pt20cu118
2023-06-27T16:16:58,052 Fetching project page and analyzing links: https://pypi.org/simple/torch-sparse/
2023-06-27T16:16:58,052 Getting page https://pypi.org/simple/torch-sparse/
2023-06-27T16:16:58,053 Found index url https://pypi.org/simple
2023-06-27T16:16:58,053 Looking up "https://pypi.org/simple/torch-sparse/" in the cache
2023-06-27T16:16:58,053 Request header has "max_age" as 0, cache bypassed