The objective is to perform an installation of the Android Studio on Ubuntu 16.04 Xenial Xerus Linux
Requirements
Privileged access to your Ubuntu System as root or via sudo command is required.
Difficulty
EASY
Conventions
# - requires given linux commands to be executed with root privileges either directly as a root user or by use of sudo command
$ - requires given linux commands to be executed as a regular non-privileged user
Instructions
Download Android Studio
The first step is to use web browser and navigate to https://developer.android.com/studio/ to download Android Studio IDE for Linux. Save the zipped bundle file locally into eg. Downloads directory.
Install Prerequisites
Android Studio requires few prerequisites before it can be installed. Run the following linux command to fulfill this requirement:
The objective is to install TeamViewer the remote control and desktop sharing software on Ubuntu 16.04 Xenial Xerus Linux
Requirements
Privileged access to your Ubuntu System as root or via sudo command is required.
Difficulty
EASY
Conventions
# - requires given linux commands to be executed with root privileges either directly as a root user or by use of sudo command
$ - requires given linux commands to be executed as a regular non-privileged user
Instructions
Prerequisites
We will be using gdebi command to install TeamViewer as it allows us to automatically download all required TeamViewer dependencies. If you have not done so yet install gdebi package:
$ sudo apt-get install gdebi
TeamViewer download
At the time of writing only multi-arch TeamViewer package is available. Use your browser to download Ubuntu version of TeamViewer or execute the below wget command, while updating the below URL is necessary:
The objective is to install Google Chrome browser on on Ubuntu 16.04 Xenial Xerus Linux.
Requirements
Privileged access to your Ubuntu 16.04 Xenial Xerus Linux Desktop
Difficulty
EASY
Conventions
# - requires given linux commands to be executed with root privileges either directly as a root user or by use of sudo command
$ - requires given linux commands to be executed as a regular non-privileged user
Instructions
Install gdebi
The easiest way to install external *.deb packages such as google chrome, is by use of gdebi tool. gdebi will automatically fetch and install all chrome's dependencies. If you have not done so yet, install gdebi now:
Many people rely on proprietary chat solutions like Skype, but those solutions pose serious concerns for both privacy and security. Additionally, development of the Skype Linux client has been unpredictable at best, even stalling for a number of years, only to resume just recently.
Django is easily the most popular web framework written in Python. It strikes a delicate balance between feature completeness and efficiency, including powerful features like automatic migration generation and a full-featured admin interface. Setting up a Django development environment in Ubuntu is fairly easy, and can be done in only a few steps.
Installing Virtualenv
It’s best to use a Python virtual environment when developing in a complex framework like Django, especially if you intend to work on multiple projects at once. It’s also probably a good idea to make sure that you have both versions of Python up to date.