Python
How To Install Python 3 and Set Up a Local Programming Environment on Ubuntu 16.04
Tutorials
Development
Python
Ubuntu 16.04
Introduction> Introduction # This tutorial will get you up and running with a local Python 3 programming environment in Ubuntu 16.04.
Python is a versatile programming language that can be used for many different programming projects.
How To Install the Anaconda Python Distribution on Ubuntu 16.04
Tutorials
Data Analysis
Development
Python
Ubuntu 16.04
Introduction> Introduction # Anaconda is an open-source package manager, environment manager, and distribution of the Python and R programming languages. It is commonly used for large-scale data processing, scientific computing, and predictive analytics, serving data scientists, developers, business analysts, and those working in DevOps.
How To Set Up uWSGI and Nginx to Serve Python Apps on Ubuntu 14.04
Tutorials
Nginx
Python
Python Frameworks
Ubuntu
Introduction> Introduction # In this guide, we will be setting up a simple WSGI application served by uWSGI. We will use the Nginx web server as a reverse proxy to the application server to provide more robust connection handling.
How To Install Django and Set Up a Development Environment on Ubuntu 16.04
Tutorials
Debian
Development
Django
Programming Project
Python
Ubuntu 16.04
Introduction> Introduction # Django is a free and open-source web framework written in Python that adheres to the model template view (MTV) software architectural pattern. The MTV pattern is Django’s take on the model–view–controller (MVC) pattern.
How To Install and Configure pgAdmin 4 in Server Mode on Ubuntu 18.04
Tutorials
Apache
Databases
PostgreSQL
Python
Ubuntu
Ubuntu 18.04
Introduction> Introduction # pgAdmin is an open-source administration and development platform for PostgreSQL and its related database management systems. Written in Python and jQuery, it supports all the features found in PostgreSQL.
Understanding Dictionaries in Python 3
Tutorials
Development
Python
Introduction> Introduction # The dictionary is Python’s built-in mapping type. Dictionaries map keys to values and these key-value pairs provide a useful way to store data in Python.
Typically used to hold data that are related, such as the information contained in an ID or a user profile, dictionaries are constructed with curly braces on either side { }.
How To Build a Machine Learning Classifier in Python with Scikit-learn
Tutorials
Data Analysis
Development
Machine Learning
Programming Project
Python
Introduction> Introduction # Machine learning is a research field in computer science, artificial intelligence, and statistics. The focus of machine learning is to train algorithms to learn patterns and make predictions from data.
How To Deploy a Flask Application on an Ubuntu VPS
Tutorials
Apache
Applications
Python
Python Frameworks
Ubuntu
What the Highlighting Means> What the Highlighting Means # The lines that the user needs to enter or customize will be highlighed in this tutorial! The rest should mostly be copy-and-pastable.
How To Set Up Jupyter Notebook with Python 3 on Ubuntu 18.04
Tutorials
Data Analysis
Development
Python
Ubuntu 18.04
Introduction> Introduction # Jupyter Notebook is an open-source web application that lets you create and share interactive code, visualizations, and more. This tool can be used with several programming languages, including Python, Julia, R, Haskell, and Ruby.
How To Set Up Django with Postgres, Nginx, and Gunicorn on Ubuntu 18.04
Tutorials
Databases
Django
Nginx
PostgreSQL
Python
Python Frameworks
Ubuntu 18.04
Introduction> Introduction # Django is a powerful web framework that can help get your Python application or website off the ground. Django includes a simplified development server for testing your code locally.
How To Serve Django Applications with uWSGI and Nginx on Ubuntu 16.04
Tutorials
Django
Python
Python Frameworks
Ubuntu
Ubuntu 16.04
Introduction> Introduction # Django is a powerful web framework that can help you get your Python application or website off the ground. Django includes a simplified development server for testing your code locally, but for anything even slightly production related, a more secure and powerful web server is required.
How To Set Up Jupyter Notebook for Python 3 on Ubuntu 22.04
Tutorials
Data Analysis
Development
Python
Introduction> Introduction # Jupyter Notebook offers a command shell for interactive computing as a web application. The tool can be used with several languages, including Python, Julia, R, Haskell, and Ruby.
How To Use String Formatters in Python 3
Tutorials
Development
Python
###Introduction
Python’s str.format() method of the string class allows you to do variable substitutions and value formatting. This lets you concatenate elements together within a string through positional formatting.
This tutorial will guide you through some of the common uses of formatters in Python, which can help make your code and program more readable and user friendly.
How To Create Nagios Plugins With Python On Ubuntu 12.10
Tutorials
Monitoring
Python
Ubuntu
Introduction> Introduction # Python is a popular command processor available on Linux by default.
We have previously covered how to install Nagios monitoring server on Ubuntu 12.10 x64.
This time, we will expand on this idea and create Nagios plugins using Python.
How To Use MySQL or MariaDB with your Django Application on Ubuntu 14.04
Tutorials
Django
MariaDB
MySQL
Python
Python Frameworks
Ubuntu
Introduction> Introduction # Django is a flexible framework for quickly creating Python applications. By default, Django applications are configured to store data into a lightweight SQLite database file. While this works well under some loads, a more traditional DBMS can improve performance in production.
How To Serve Flask Applications with uWSGI and Nginx on Ubuntu 14.04
Tutorials
Deployment
Nginx
Python
Python Frameworks
Ubuntu
Introduction> Introduction # In this guide, we will be setting up a simple Python application using the Flask micro-framework on Ubuntu 14.04. The bulk of this article will be about how to set up the uWSGI application server to launch the application and Nginx to act as a front end reverse proxy.
How To Work with Web Data Using Requests and Beautiful Soup with Python 3
Tutorials
Data Analysis
Development
Programming Project
Python
Introduction> Introduction # The web provides us with more data than any of us can read and understand, so we often want to work with that information programmatically in order to make sense of it.
How To Install the Anaconda Python Distribution on Ubuntu 18.04
Tutorials
Data Analysis
Development
Python
Ubuntu 18.04
Introduction> Introduction # Designed for data science and machine learning workflows, Anaconda is an open-source package manager, environment manager, and distribution of the Python and R programming languages. It is commonly used for large-scale data processing, scientific computing, and predictive analytics.
How To Install Python 3 and Set Up a Programming Environment on Ubuntu 18.04 [Quickstart]
Tutorials
Development
Python
Quickstart
Ubuntu 18.04
###Introduction
Python is a flexible and versatile programming language, with strengths in scripting, automation, data analysis, machine learning, and back-end development.
This tutorial will walk you through installing Python and setting up a programming environment on an Ubuntu 18.
How To Create Django Models
Tutorials
Development
Django
Programming Project
Python
Ubuntu 20.04
Introduction> Introduction # In the previous tutorial, “How To Create a Django App and Connect it to a Database,” we covered how to create a MySQL database, how to create and start a Django application, and how to connect it to a MySQL database.