Closed 747 closed 1 year ago
Ubuntu 20.04 のマシンで docker をビルドしようとすると以下のエラーが発生します。 なお、requirements.txt で numpy==1.21.6 にすることでビルドは可能でした。
numpy==1.21.6
=> ERROR [ 8/12] RUN set -x && pip install -r /root/ocr_cli/requirements.txt 1.9s ------ > [ 8/12] RUN set -x && pip install -r /root/ocr_cli/requirements.txt: #0 0.401 + pip install -r /root/ocr_cli/requirements.txt #0 0.879 Collecting click #0 0.934 Downloading click-8.1.3-py3-none-any.whl (96 kB) #0 0.960 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 96.6/96.6 kB 4.8 MB/s eta 0:00:00 #0 1.067 Collecting lmdb==1.2.1 #0 1.076 Downloading lmdb-1.2.1-cp37-cp37m-manylinux2010_x86_64.whl (299 kB) #0 1.110 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 299.4/299.4 kB 10.4 MB/s eta 0:00:00 #0 1.190 Collecting natsort==7.1.1 #0 1.199 Downloading natsort-7.1.1-py3-none-any.whl (35 kB) #0 1.291 Collecting nltk==3.6.6 #0 1.303 Downloading nltk-3.6.6-py3-none-any.whl (1.5 MB) #0 1.399 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.5/1.5 MB 16.4 MB/s eta 0:00:00 #0 1.758 ERROR: Ignored the following versions that require a different python version: 1.22.0 Requires-Python >=3.8; 1.22.1 Requires-Python >=3.8; 1.22.2 Requires-Python >=3.8; 1.22.3 Requires-Python >=3.8; 1.22.4 Requires-Python >=3.8; 1.23.0 Requires-Python >=3.8; 1.23.0rc1 Requires-Python >=3.8; 1.23.0rc2 Requires-Python >=3.8; 1.23.0rc3 Requires-Python >=3.8; 1.23.1 Requires-Python >=3.8; 1.23.2 Requires-Python >=3.8; 1.23.3 Requires-Python >=3.8; 1.23.4 Requires-Python >=3.8; 1.23.5 Requires-Python >=3.8; 1.24.0 Requires-Python >=3.8; 1.24.0rc1 Requires-Python >=3.8; 1.24.0rc2 Requires-Python >=3.8; 1.24.1 Requires-Python >=3.8; 1.24.2 Requires-Python >=3.8 #0 1.758 ERROR: Could not find a version that satisfies the requirement numpy==1.22.4 (from versions: 1.3.0, 1.4.1, 1.5.0, 1.5.1, 1.6.0, 1.6.1, 1.6.2, 1.7.0, 1.7.1, 1.7.2, 1.8.0, 1.8.1, 1.8.2, 1.9.0, 1.9.1, 1.9.2, 1.9.3, 1.10.0.post2, 1.10.1, 1.10.2, 1.10.4, 1.11.0, 1.11.1, 1.11.2, 1.11.3, 1.12.0, 1.12.1, 1.13.0, 1.13.1, 1.13.3, 1.14.0, 1.14.1, 1.14.2, 1.14.3, 1.14.4, 1.14.5, 1.14.6, 1.15.0, 1.15.1, 1.15.2, 1.15.3, 1.15.4, 1.16.0, 1.16.1, 1.16.2, 1.16.3, 1.16.4, 1.16.5, 1.16.6, 1.17.0, 1.17.1, 1.17.2, 1.17.3, 1.17.4, 1.17.5, 1.18.0, 1.18.1, 1.18.2, 1.18.3, 1.18.4, 1.18.5, 1.19.0, 1.19.1, 1.19.2, 1.19.3, 1.19.4, 1.19.5, 1.20.0, 1.20.1, 1.20.2, 1.20.3, 1.21.0, 1.21.1, 1.21.2, 1.21.3, 1.21.4, 1.21.5, 1.21.6) #0 1.759 ERROR: No matching distribution found for numpy==1.22.4
こちらにつきましてもご報告ありがとうございました。
(numpy==1.22.4を導入できるよう、ベースコンテナを変更してあります。) どうぞよろしくお願いいたします。
改めてダウンロードしたところ、正常にビルドできました。
ご対応ありがとうございました。
Ubuntu 20.04 のマシンで docker をビルドしようとすると以下のエラーが発生します。 なお、requirements.txt で
numpy==1.21.6
にすることでビルドは可能でした。