前提・実現したいこと
pythonのアプリケーションをdockerを用いてherokuに載せようとしています。
今までは普通に実行できていたのですが、突然エラーが出てしまいました。
解決する方法はありますか?
発生している問題・エラーメッセージ
11 212.1 Partial import of sklearn during the build process. 11 212.1 Traceback (most recent call last): 11 212.1 File "/tmp/pip-build-ewazc95o/scikit-learn/sklearn/_build_utils/__init__.py", line 27, in _check_cython_version 11 212.1 import Cython 11 212.1 ModuleNotFoundError: No module named 'Cython' 11 212.1 11 212.1 The above exception was the direct cause of the following exception: 11 212.1 11 212.1 Traceback (most recent call last): 11 212.1 File "<string>", line 1, in <module> 11 212.1 File "/tmp/pip-build-ewazc95o/scikit-learn/setup.py", line 306, in <module> 11 212.1 setup_package() 11 212.1 File "/tmp/pip-build-ewazc95o/scikit-learn/setup.py", line 302, in setup_package 11 212.1 setup(**metadata) 11 212.1 File "/usr/local/lib/python3.6/dist-packages/numpy/distutils/core.py", line 135, in setup 11 212.1 config = configuration() 11 212.1 File "/tmp/pip-build-ewazc95o/scikit-learn/setup.py", line 186, in configuration 11 212.1 _check_cython_version() 11 212.1 File "/tmp/pip-build-ewazc95o/scikit-learn/sklearn/_build_utils/__init__.py", line 30, in _check_cython_version 11 212.1 raise ModuleNotFoundError(message) from e 11 212.1 ModuleNotFoundError: Please install Cython with a version >= 0.28.5 in order to build a scikit-learn from source.
該当のソースコード
requirements.txt uvicorn==0.11.8 pandas==1.1.1 pydantic==1.6.1 scipy==1.5.2 sklearn==0.0
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/01/14 06:29 編集
2021/01/14 06:50
2021/01/14 06:56
2021/01/14 07:03
2021/01/14 07:28
2021/01/14 09:54