I am trying to access python 3.4 from the terminal under windows 7. I have installed Python through Anaconda distribution and with it I installed python 2.7 by default and python 3.4 in a virtual environment.
when I run this:
c:\Anaconda\envs\Python34\Python.exe setup.py
I get:
usage: setup.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
or: setup.py --help [cmd1 cmd2 ...]
or: setup.py --help-commands
or: setup.py cmd --help
error: no commands supplied
So how can I call python 3.4 from the terminal?
Thanks in advance.