Showing posts with label editor. Show all posts
Showing posts with label editor. Show all posts

Friday, April 18, 2014

Android Studio: Editor software for Android development

0 comments

Android Studio: Editor software for Android development

Android Studio, is a software editor (IDE), to develop Android, which is a nice alternative to the famous software editor Eclipse (Eclipse is also available on Linux), and in this post we show how to install Android Studio on Ubuntu.

- To install the Android Studio on Ubuntu 14.04 \ 13.10 Open the terminal and run the following three commands:

 sudo apt-add-repository ppa:paolorotolo/android-studio
sudo apt-get update
sudo apt-get install android-studio

- If you want to uninstall it, run the following two commands:

 sudo apt-get install ppa-purge 
 sudo ppa-purge ppa:paolorotolo/android-studio

     
Read more...

Friday, February 14, 2014

PyCharm : New open-source Editor application for Python

0 comments

PyCharm : New open-source Editor application for Python

PyCharm Editor software is a new IDE from JetBrains , open-source , built specifically for Python programmers language.

It has a lot of wonderful features that improve productivity so much, watch the video above.


PyCharm is available in two versions : the first free open source ( a community ) , and the second is the professional which comes with some additional features for developers Web and supports : (Google App Engine, Flask, Django, web2py, CoffeeScript and other templating languages, Remote development, SQL and more)

For installation on Ubuntu ; download this package, and then unzip ( extract ) and then run the file pycharm.sh.

Note : that you 'll need to install the Java Oracle JRE (1.6 +).

Run the following commands , so the program will work.

sudo apt-get purge openjdk * && sudo add-apt-repository ppa: webupd8team/java && sudo apt-get update && sudo apt-get install oracle-java7-installer

     
Read more...