Showing posts with label Win10. Show all posts
Showing posts with label Win10. Show all posts

How To Install Groovy in Eclipse & How to run a Groovy Script

Groovy has been gaining lot of popularity since some time coz of its static and dynamic nature of execution. It is based on Java or JVM, and so its a statically typed language.

Also it is a dynamic language with features similar to those of Python, Ruby.

Eclipse is one of the most popular opensource IDE used for Java/J2EE project development. It can be used for development of other languages as well, like PHP, Python, etc.

In the following video let us see how to install Groovy in Eclipse(v4.7), and how to run groovy scripts and groovy classes in eclipse.


Read More »

How To Run Python 2 and Python 3 in same Windows and Also from git-bash


Most times we want to work on different version of Python in our Windows system. In the following video learn how to run both Python 2.7.x and Python 3.x in the same Windows 10 system.

Also learn how to easily run python from git-bash prompt.


For running python easily in git bash:
Add the following in file .bashrc(create if not available). alias python3='winpty /c/(Python 3.x folder path)/python.exe' alias python='winpty /c/(Python 2.x folder path)/python.exe' The .bashrc file will be in home folder in git bash.
Note: Type cd ~ , to go to your home folder. e.g. $ cd ~

Happy Learning!!


Python Testing course in Udemy link here.
Read More »