It was recommended to me to get a VIM editor for Python. I have found many websites that have much content concerning VIM, Not knowing all that I need to make this editor work
can someone recommend a site that has it all in one download.
Don
It was recommended to me to get a VIM editor for Python. I have found many websites that have much content concerning VIM, Not knowing all that I need to make this editor work
can someone recommend a site that has it all in one download.
Don
Good question depends on what operating system or machine you are using on many systems the VI editor is in fact VIM so you may already have it,
are you using vi already and is it all sorts of colours when editing say your program or some such ??
Other than that I might assume you are using the RPI in which case you can do this snippit
sudo apt-get update
sudo apt-get install vim-runtime
sudo apt-get install vim
Thieved via Google ...Google is your friend!
Thanks John
You were correct. I am working with RPI and I did as you suggested and seemed to have all the files I needed already downloaded, however having looked thru
all the files and folders after I did the three apt-get lines I do not see the file that executes VIM, what and where is it? Also I do have a folder with Icons in it. I assume they are for the desktop so I can run the GUI. If this is true how do I implement the icons on the Desktop? As you have probably surmised I am a newbie at this whole Python thing, and need all the help I can get.
Thanks again
Don
Vi is an editor designed to be run from the command line, so you type "vi example.py" at the command line to edit a file called example.py.
If you're planning to work from the GUI, you might prefer to use one of the many IDEs that support Python, for example Netbeans, An IDE gives you a complete GUI environment for editing, running and debugging code. Try Googling for "Python IDE" to get some idea of how many alternatives are available under Linux.
thanks Martyn
I ran vi from the command line using one of my files and seemed to work fine.
I think I have GUI already downloaded but I do not know how to or what to use to init them.
they came with VIM (2:7.3.547-7) I downloaded. Are you familiar with that. I think the description said GUI was included.
It was called GVIM. There is a file called GVimn located in the debian folder along with lots of other files referring to vim in some way.
again thanks Don
I'm not familiar with gvim, but apparently you can install it with
sudo apt-get install vim-gtk
and the command to start it is gvim.
THANK YOU Martyn:
This procedure worked fine. I got the GUI to come up using your suggestions.
I hope all this effort is worth the it, that the GVIM will be worth it.
Thanks again
Don