Oscar
Oscar
Hello @esc, thank you for your quick reply. Actually I opened an initial issue in poetry and they told me to come here 😃 https://github.com/python-poetry/poetry/issues/6079 I also believe it is...
[This](https://gist.github.com/oscar-defelice/e80ee6d5fa88658c0db9490c231cec10) is the output of the command `poetry add llvmlite --lock -vvv` explicitly.
@joaquincabezas thank you! I followed your instructions, however I still get the same error with `tensorflow-io-gcs-filesystem`. Installed tensorflow io by the wheel, but then if I try to `run poetry...
> I don't thing this has anything to do with Poetry, since the issue happens when building the wheel locally. > > The issue itself is probably that you are...
@dimbleby Thank you for your answer. Can you please show me where I can find which version I should add to my project? Because I have read the linked discussions...
> the output you pasted shows that you are trying to install "0.38.0" Thank you. Same problem with 0.39.0
The error is the same posted above if I run `poetry add [email protected]`. Now I managed to manually add llvmlite to my project by `poetry add llvmlite --lock -vvv`. [This](https://gist.github.com/oscar-defelice/e80ee6d5fa88658c0db9490c231cec10)...
Ok, done. Cleaned cache. Now I have the following pyproject.toml ``` [tool.poetry] name = "dataflows" version = "0.1.0" description = "" authors = ["pthumerel "] [tool.poetry.dependencies] python = ">=3.9,
I have all of this into a dockerfile. ```docker ARG BASE_IMAGE=python:3.9-buster FROM $BASE_IMAGE # install project requirements # copy the files needed for installing requirements RUN mkdir /dataflows COPY .....
@dimbleby thank you very much. However I deleted now tempr_ds and I am trying to run a minimal project just to add tensorflow, and I have the very same error....