Closed AlxndrMlk closed 3 years ago
Thanks for reporting this issue, @AlxndrMlk. I personally don't have access to Windows environment. Could you please try the conda
environment in envs/
as follows?
$ conda env create -f environment-py38.yml
$ conda activate causalml-py38
(causalml-py38) $ python -c "import causalml; print(causalml.__version__)"
Please let me know if it works.
Thanks @jeongyoonlee! It works! 🎉
For some reason it took a very long time to install pip
dependencies, but after it finished I was able to import the lib and print the version (0.10.0
)
Glad that it worked! Have a good weekend. :)
Thanks! Have a good one! :)
Describe the bug I am trying to install
causalml
on Windows 10. I get the following error:To Reproduce I started with a
python=3.8
conda environment and installedpip install tensorflow==2.3
beforepip install causalml
I tried other versions of Python as well (3.6.5, 3.7)Environment (please complete the following information):
tensorflow==2.3.0
]This part caught my attention:
FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2)
Seems it's trying to usecython
forPy2
. Not sure how to address it though.Will be grateful for any ideas. Thank you!