Euskalduna
Euskalduna

Reputation: 1627

Can I use scikit-learn with Django framework?

I would like to make a Web app in which some data is analyzed. Due to it, I read that Django is a good option for doing web apps and that scikit-learn was used for machine learning. Therefore, before starting, does anyone know if it is possible to use that combination?

Upvotes: 2

Views: 3083

Answers (1)

stellasia
stellasia

Reputation: 5622

Django is a python framework meaning that you need to have python installed to use it. Once you have python, you can use whatever python package you want (compatible with the version of python you are using).

Upvotes: 5

Related Questions