djangoで、jsを扱いたいのですが、なかなかエラーが消えません。

https://code.i-harness.com/ja/q/48f14
こちらのサイトを参考にして、js.pyを追加し、
htmlファイルに以下のように記述しましたが、(% load js %}のところでエラーが出てしまいます。

{% load js %}
<script type="text/javascript">
    var someVar = {{ some_var | js }};
</script>

[結果]

django.template.exceptions.TemplateSyntaxError: 'js' is not a registered tag library. Must be one of:
admin_list
admin_modify
admin_static
admin_urls
cache
i18n
l10n
log
static
staticfiles
tz

settings.pyファイルを変更したりいろいろ試しましたが、解決せず、困っております。

pythonのversionは3.4.3、djangoのバージョンは2.0になります。
よろしくお願いいたいします。