awslabs / datawig

Imputation of missing values in tables.
Apache License 2.0
478 stars 69 forks source link

Dependencies clashing #121

Closed vkeerthivikram closed 4 years ago

vkeerthivikram commented 4 years ago

numpy==1.18.0 scikit-learn[alldeps]==0.22.1 typing==3.6.6 pandas==0.25.0 mxnet==1.4.0 these are the requirements however mxnet 1.4.0 has numpy dependency as 1.14.6 and latest version of mxnet 1.6.0 has numpy dependencies 1.16.6. As a result unable to install this package

felixbiessmann commented 4 years ago

have you tried installing and running it?

vkeerthivikram commented 4 years ago

I am unable to install it gives the following error. ERROR: Command errored out with exit status 1: command: 'C:\Users\Admin\Anaconda3\python.exe' -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\Users\Admin\AppData\Local\Temp\pip-install-suvz3ulx\datawig\setup.py'"'"'; file='"'"'C:\Users\Admin\AppData\Local\Temp\pip-install-suvz3ulx\datawig\setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(file);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, file, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\Admin\AppData\Local\Temp\pip-install-suvz3ulx\datawig\pip-egg-info' cwd: C:\Users\Admin\AppData\Local\Temp\pip-install-suvz3ulx\datawig\ Complete output (5 lines): Traceback (most recent call last): File "", line 1, in File "C:\Users\Admin\AppData\Local\Temp\pip-install-suvz3ulx\datawig\setup.py", line 6, in with open(os.path.join(ROOT,"requirements","requirements.txt")) as f: FileNotFoundError: [Errno 2] No such file or directory: 'C:\Users\Admin\AppData\Local\Temp\pip-install-suvz3ulx\datawig\requirements\requirements.txt'

ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.

TammoR commented 4 years ago

Working on a proper fix but before that you could install from source

git clone https://github.com/awslabs/datawig
cd datawig

Make this change to the requirements.txt https://github.com/awslabs/datawig/pull/122/files

pip install .
vkeerthivikram commented 4 years ago

Thanks