InstallΒΆ
Install with the pip package manager.
$ mkvirtualenv myvenv -p python3
$ pip install django
$ pip install django-smartspaceless
After creating a project, add smartspaceless to INSTALLED_APPS in settings.py.
INSTALLED_APPS = [
# ...
'smartspaceless',
]
Remember to update your requirements.txt file. In your project directory:
$ pip freeze > requirements.txt