After installing Graphlab Create on Win 10, it asks us to install 2 dependencies using graphlab.get_dependencies().
However, I am getting the following error:
In [9]: gl.get_dependencies() By running this function, you agree to the following licenses. * libstdc++: https://gcc.gnu.org/onlinedocs/libstdc++/manual/license.html * xz: http://git.tukaani.org/?p=xz.git;a=blob;f=COPYING Downloading xz. Extracting xz. --------------------------------------------------------------------------- BadZipfile Traceback (most recent call last) in () ----> 1 gl.get_dependencies() C:\Users\nikulk\Anaconda2\envs\gl-env\lib\site-packages\graphlab\dependencies.pyc in get_dependencies() 34 xzarchive_dir = tempfile.mkdtemp() 35 print('Extracting xz.') ---> 36 xzarchive = zipfile.ZipFile(xzarchive_file) 37 xzarchive.extractall(xzarchive_dir) 38 xz = os.path.join(xzarchive_dir, 'bin_x86-64', 'xz.exe') C:\Users\nikulk\Anaconda2\envs\gl-env\lib\zipfile.pyc in __init__(self, file, mode, compression, allowZip64) 768 try: 769 if key == 'r': --> 770 self._RealGetContents() 771 elif key == 'w': 772 # set the modified flag so central directory gets written C:\Users\nikulk\Anaconda2\envs\gl-env\lib\zipfile.pyc in _RealGetContents(self) 809 raise BadZipfile("File is not a zip file") 810 if not endrec: --> 811 raise BadZipfile, "File is not a zip file" 812 if self.debug > 1: 813 print endrec BadZipfile: File is not a zip file
Anyone knows how to resolve?