Re: [Pydev-users] Setting up Eclipse pydev django development environment
Brought to you by:
fabioz
From: Gary R. <gar...@ve...> - 2016-06-07 20:23:07
|
The terminal is a plugin called TM Terminal. I mimics a standard bash terminal but works with the project files. Very handy. This is the first time that I have tried to run a py file without using the command line with python. I am not sure what you mean by using F9. This does nothing on my system. The Eclipse menu lists run as ^ F11 . I tried several different methods of running my test.py file. The only one that worked is python test.py on the command line of the terminal. This produced sys.version_info(major=2, minor=7, micro=11, releaselevel='final', serial=0). Whether I used the plugin terminal or my standard bash system terminal made no difference. I got the same results both ways. Gary R. On 06/07/2016 03:45 AM, Fabio Zadrozny wrote: > import sys > print(sys.version_info) > |