2016-08-06 8 views
1

Ich habe Schwierigkeiten bei der Installation von Python-Paketen auf Windows 10. Der Paketname ist Tabular..ich habe es immer und immer wieder versucht und es funktioniert nicht.her, was ich bekomme, wenn ich es versuche installieren sie es pip.Any Hilfe darüber mit? DankePython Paket ImportError in Windows 10

 
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 
+0

Haben Sie nach dem Upgrade versuchen zu verteilen? –

+0

Bekannter Fehler. https://github.com/yamins81/tabular/issues/6 –

+0

verteilen ist für mich auf dem neuesten Stand –

Antwort

0

Tabellarische 0.1 Probleme mit Windows 10 hat Bitte fallen zurück auf 0.0.8

pip install tabular==0.0.8 

bearbeiten

Für scipy Installation unter Windows 10 mit Python 2.7, Anweisungen sind bei https://stackoverflow.com/a/38618044/5334188

+0

danke das funktioniert gut auf Python 2.7, aber wenn ich versuche, es mit Anaconda installieren funktioniert immer noch nicht ..PS: Ich benutze Anconda, weil es unterstützt scipy Modul –

+0

Sie können scipy auch in Python 2.7 Anaconda Python-Version ist etwas schwer. Beziehen Sie sich auf Anweisungen hier für die Installation von scipy - http://Stackoverflow.com/a/38618044/5334188 Wenn Sie an Anaconda Python bleiben wollen, lassen Sie mich wissen, weiter zu debuggen –

+0

Ich versuche es zu installieren scipy auf Python2.7 aber doesn 't arbeiten aus, deshalb bin ich zu Anaconda gegangen. So ist es möglich, in Anaconda tabellarisch zu installieren –

Verwandte Themen