https://kedro.org/ logo
#questions
Title
# questions
d

David Platt

11/15/2023, 8:22 PM
Hi Kedro Team, when we try to install
kedro[pandas]~=0.18.8
(part of requirements.txt) on Windows, we get the below error. Any ideas on how to resolved? installing kedro 0.18.8 works fine
lzo_version_dateyssugh7s.c
LINK : fatal error LNK1181: cannot open input file 'lzo2.lib'
* Could not find LZO 2 headers and library; disabling support for it.
lzo_version_datec5gdhv04.c
LINK : fatal error LNK1181: cannot open input file 'liblzo.lib'
* Could not find LZO 1 headers and library; disabling support for it.
BZ2_bzlibVersion2fwfu9rz.c
LINK : fatal error LNK1181: cannot open input file 'bzip2.lib'
* Could not find bzip2 headers and library; disabling support for it.
blosc_list_compressorsuf_s47jo.c
LINK : fatal error LNK1181: cannot open input file 'blosc.lib'
m

marrrcin

11/15/2023, 8:29 PM
I guess part of the issue is the "Windows" thing you have there 🧌
d

David Platt

11/15/2023, 8:34 PM
well played 😀
d

datajoely

11/15/2023, 8:39 PM
Can you use WSL?
d

David Platt

11/15/2023, 8:42 PM
what is WSL?
d

David Platt

11/15/2023, 9:51 PM
@Ian Whalen thanks for the info!
👍 1
@datajoely unfortunately WSL isn't an option for this use case
y

Yolan Honoré-Rougé

11/15/2023, 10:21 PM
Just ``pip install pandas`` might help :)
j

Juan Luis

11/16/2023, 12:03 AM
@David Platt are you using conda? if so, you can install bzip2 and libzo with it, and the rest with pip. It’s what I do on macOS and it works (with the same issue you have)
d

David Platt

11/16/2023, 1:56 AM
@Yolan Honoré-Rougé yes that looks very related, bugging out by the 'tables' build and providing a beautiful stacktrace 😀
@Juan Luis yes we are using conda! That solution seems to have cleared the errors.. many thanks!!
thankyou 4
j

Juan Luis

11/16/2023, 7:46 AM
glad it helped!!