[Answered ]-Python3 Magic for a Django project

1👍

If you install this through pip3, the name of the package is python-magic [PyPi], not python3-magic, so:

pip3 install python-magic

If you use apt-get, you can work with python3-magic and python-magic. These are not links to a Python package, but in essence intallations scripts that will work with pip3 and pip respectively. See for example the files of the python3-magic package [ubuntu-packages].

Leave a comment