I'm using Python 3 with Anaconda on Windows 7. I installed Twisted with conda install twisted
, and now I'm trying to run twisted
(or twistd
?) from the console, but I get this error
'twisted' is not recognized as an internal or external command, operable program or batch file.
which makes me think a directory is missing from the path, as in this question. Anaconda is installed in C:\Anaconda3
, but even in C:\Anaconda3\Lib\site-packages\twisted
, there isn't a twisted.py
or twistd.py
file.
Am I doing something wrong, or am I looking in the wrong place for the file(s)?
Is this an issue because Twisted isn't officially ported to Python 3 yet?