1
votes

I am having difficulty installing Python Packages on Windows 10.The package name is Tabular..i have been trying over and over and it doesn't work out.her what i get when I try to install it using pip.Any help about it ?Thanks

C:\Python27\Scripts>pip install tabular
Collecting tabular
  Using cached tabular-0.1.tar.gz
    Complete output from command python setup.py egg_info:
    Traceback (most recent call last):
      File "", line 1, in 
      File "c:\users\pc\appdata\local\temp\pip-build-5mggv5\tabular\setup.py", line 50, in 
        raise ImportError("distribute was not found and fallback to setuptools was not allowed")
    ImportError: distribute was not found and fallback to setuptools was not allowed

    ----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in c:\users\pc\appdata\local\temp\pip-build-5mggv5\tabular\

C:\Python27\Scripts>pip install distribute
Requirement already satisfied (use --upgrade to upgrade): distribute in c:\python27\lib\site-packages
Requirement already satisfied (use --upgrade to upgrade): setuptools>=0.7 in c:\python27\lib\site-packages (from distribute)

C:\Python27\Scripts>pip install --upgrade distribute
Requirement already up-to-date: distribute in c:\python27\lib\site-packages
Collecting setuptools>=0.7 (from distribute)
  Downloading setuptools-25.1.6-py2.py3-none-any.whl (442kB)
    100% |################################| 450kB 191kB/s
Installing collected packages: setuptools
  Found existing installation: setuptools 25.1.1
    Uninstalling setuptools-25.1.1:
      Successfully uninstalled setuptools-25.1.1
Successfully installed setuptools-25.1.6
1
Did you try after upgrading distribute?be_good_do_good
distribute is up to date for meM aisha

1 Answers

0
votes

Tabular 0.1 has issues with Windows 10. Please fall back to 0.0.8

pip install tabular==0.0.8

Edit

For scipy installation on Windows 10 with python 2.7, instructions are at https://stackoverflow.com/a/38618044/5334188