2016-06-08 1 views
0
C:\Users\gaucho-ucsb>pip install tradingWithPython 
Collecting tradingWithPython 
Using cached tradingWithPython-3.1.0.0.tar.gz 
Complete output from command python setup.py egg_info: 
Traceback (most recent call last): 
    File "<string>", line 1, in <module> 
    File "c:\users\gaucho~1\appdata\local\temp\pip-build-gshhyv\tradingWithPython\setup.py", line 3, in <module> 
    import tradingWithPython as twp 
    File "tradingWithPython\__init__.py", line 6, in <module> 
    from .lib import extra 
    File "tradingWithPython\lib\extra.py", line 20 
    print('\r', self, end='') 
         ^
SyntaxError: invalid syntax 

---------------------------------------- 
Command "python setup.py egg_info" failed with error code 1 in  
c:\users\gaucho~1\appdata\local\temp\pip-build-gshhyv\tradingWithPython\ 

아나콘다에 tradingWithPython 패키지를 설치하려고하는데, 알아낼 수없는 오류가 계속 발생합니다. 어떤 도움이라도 대단히 감사 할 것입니다.은 tradingWithPython을 아나콘다에 설치할 수 없습니다.

+0

python2 또는 python3을 사용하고 있으며 호환 가능한 모듈입니까? – Merlin

+0

Anaconda 환경과 함께 제공되는 Python 2.7이지만 Python의 모든 버전에 설치해야하는이 패키지의 웹 사이트에 말합니다. – user60887

답변

1

방금 ​​라이브러리 작성자와 이야기를 나누었습니다. tradingwithPython은 Python3과 함께 설치됩니다. 더 이상 이전 버전과 호환되지 않습니다.

나는 (나는 동일한 문제가 있었기 때문에) 이것을 시도했지만 지금은 효과가있는 것으로 보인다.

+0

감사합니다. 이것은 도움이되었습니다. – user60887