Closed nrnrnr closed 11 years ago
The problem is that you're still somehow using Python 3 and nflvid
requires Python 2.7.
I suspect this is happening either because you're using a pip
for Python 3 or because you're using a virtualenv
for Python 3. You should be able to see which pip
you have by examining the output of pip --version
. For example, on my system:
[andrew@Liger ~] pip --version
pip 1.4.1 from /usr/lib/python3.3/site-packages (python 3.3)
[andrew@Liger ~] pip2 --version
pip 1.4.1 from /usr/lib/python2.7/site-packages (python 2.7)
In other words, I cannot use pip
on my system to install nflvid
but I could use pip2
. I can tell this because of the python 3.3
for pip
and python 2.7
for pip2
. If your pip
says python 2.7
, then you should be able to use pip
.
I located pip2 on github. However, the installation fails. I am running in a "virtual environment" as recommended by the pip2 documentation.
I failed to capture the entire screen but this dump may give you some of the gist:
I can't tell if the problem is "eventlet", but it looks like an internal problem in
nflvid
. Hence this trouble report.