How To Install python3-django-pyscss on Ubuntu 18.04

In this tutorial we learn how to install python3-django-pyscss on Ubuntu 18.04. python3-django-pyscss is makes it easier to use PySCSS in Django - Python 3.x

Introduction

In this tutorial we learn how to install python3-django-pyscss on Ubuntu 18.04.

What is python3-django-pyscss

python3-django-pyscss is:

Django-pyscss is a collection of tools for making it easier to use pyScss within Django. It overwrites the import system to use Django’s staticfiles app. This way you can import SCSS files from any app (or any file that’s findable by the STATICFILES_FINDERS) with no hassle. It provides a django-compressor precompile filter class so that you can easily use pyScss with django-compressor without having to bust out to the shell. This has the added benefit of removing the need to configure pyScss through its command-line arguments AND makes it possible for the exceptions and warnings that pyScss emits to bubble up to your process so that you can actually know what’s going on.

This package contains the Python 3.x module.

There are three methods to install python3-django-pyscss on Ubuntu 18.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install python3-django-pyscss Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install python3-django-pyscss using apt-get by running the following command:

sudo apt-get -y install python3-django-pyscss

Install python3-django-pyscss Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install python3-django-pyscss using apt by running the following command:

sudo apt -y install python3-django-pyscss

Install python3-django-pyscss Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install python3-django-pyscss using aptitude by running the following command:

sudo aptitude -y install python3-django-pyscss

How To Uninstall python3-django-pyscss on Ubuntu 18.04

To uninstall only the python3-django-pyscss package we can use the following command:

sudo apt-get remove python3-django-pyscss

Uninstall python3-django-pyscss And Its Dependencies

To uninstall python3-django-pyscss and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove python3-django-pyscss

Remove python3-django-pyscss Configurations and Data

To remove python3-django-pyscss configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge python3-django-pyscss

Remove python3-django-pyscss configuration, data, and all of its dependencies

We can use the following command to remove python3-django-pyscss configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge python3-django-pyscss

References

Summary

In this tutorial we learn how to install python3-django-pyscss package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.