2014-04-04 2 views
3

현재 pydot (1.0.28) 버전을 설치하려면 pip을 얻을 수 없습니다. yolkPyPi 모두 보고서 가능한, 현재와 같은 버전,하지만왜 패키지의 현재 버전을 pip하지 않습니까?

pip -U pydot

나에게

을 제공

pip -U pydot==1.0.28

과 현재 버전을 강제로 나에게

Requirement already up-to-date: pydot in /Library/Python/2.7/site-packages 
Requirement already up-to-date: pyparsing in /Library/Python/2.7/site-packages (from pydot) 
Requirement already up-to-date: setuptools in /Library/Python/2.7/site-packages (from pydot) 

을 제공합니다 012 3,516,

Downloading/unpacking pydot==1.0.28 
    Could not find a version that satisfies the requirement pydot==1.0.28 (from versions: 1.0.2) 
    Some externally hosted files were ignored (use --allow-external to allow). 
Cleaning up... 
No distributions matching the version for pydot==1.0.28 

심지어

pip -U --allow-external pydot pydot==1.0.28

이 나에게주는

Downloading/unpacking pydot==1.0.28 
    Could not find a version that satisfies the requirement pydot==1.0.28 (from versions: 1.0.2) 
    Some insecure and unverifiable files were ignored (use --allow-unverified pydot to allow). 
Cleaning up... 
No distributions matching the version for pydot==1.0.28 
+0

무엇에 대해'--allow-external' 옵션을? –

+0

pydot가 외부에서 호스팅되는 것처럼 보일 수 있습니다. –

+0

관련 내용 : http://stackoverflow.com/questions/15951748/pydot-and-graphviz-error-couldnt-import-dot-parser-loading-of-dot-files-will –

답변

1

이 시도 :

pip install --allow-unverified pydot pydot==1.0.28

+0

[좋은 생각이 아닙니다.] (http : //stackoverflow.com/a/21069581/656912) – orome

+0

작동하지 않습니다. 동일한 문제가 있습니다. –

관련 문제