Using materialize doesn't require any installation but the process of the using it is quite simple. This is can done using CDN (Content Delivery Network) and put it in your header tag. The CND is provided on the right side. By pasting this code into your html, you are able to use various functions that are proivded by Materialize.
Install the latest version of Python on your PC with the right variant of windows (64x or 32x). Install an older version if using it for windows XP.
If there is a need to set up a large database using Django then install a database because python comes pre-installed with a lightweight database called SQLite
Install pip which is a package manage for Python. It makes installing and uninstalling Python packages very easy.
pip install virtualenvwrapper-win
These are python tools that provide a dedicated environment for each Django project you create. These tools can be installed through windows powershell.
After installing pip follow these steps to create a virtual environment for your project:
mkvirtualenv myproject
The virtual environment will be activated automatically, and you’ll see “(myproject)” next to the command prompt to designate that.
If you start a new command prompt, you’ll need to activate the environment again using:
workon myproject
After the virtual environment is created and active type the following to install Django.:
pip install Django
To find out how to install Django on different platforms check the distribution specific packages