Python Forum
PIP install problem - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: PIP install problem (/thread-28690.html)



PIP install problem - samuelbachorik - Jul-30-2020

Hello guy iam trying to install pyspectator extension with PIP. - https://github.com/it-geeks-club/pyspectator

But always get this error. PLease can someone tell me what is problem ?

C:\Users\Samuel>pip install pyspectator
Collecting pyspectator
Using cached pyspectator-1.2.1.tar.gz (12 kB)
ERROR: Command errored out with exit status 1:
command: 'c:\users\samuel\appdata\local\programs\python\python38-32\python.exe' -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\Samuel\\AppData\\Local\\Temp\\pip-install-kdmiqrqc\\pyspectator\\setup.py'"'"'; __file__='"'"'C:\\Users\\Samuel\\AppData\\Local\\Temp\\pip-install-kdmiqrqc\\pyspectator\\setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\Samuel\AppData\Local\Temp\pip-pip-egg-info-ykshe6qi'
cwd: C:\Users\Samuel\AppData\Local\Temp\pip-install-kdmiqrqc\pyspectator\
Complete output (1 lines):
error in pyspectator setup command: 'install_requires' must be a string or list of strings containing valid project/version requirement specifiers; Invalid requirement, parse error at "'-r base.'"
----------------------------------------
ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.

C:\Users\Samuel>


RE: PIP install problem - Larz60+ - Jul-31-2020

the last update on this package was Dec 2017.As far as I can tell, at least in PyPi.
There is a new package by same author named pyspectator_tornado https://pypi.org/project/pyspectator_tornado/
perhaps that's the one you should be using.
I am not familiar with either, so you will need to investigate.