It depends on whether the modules you downloaded are compatible with the version of Python you are trying to run. I can't really figure out what module / Python versions you are talking about, but if it's compatible, all you would need to do is add the module path to the PYTHONPATH. You can do this either in your environment variable or within you python script.
From the documentation:
PYTHONPATH¶
Augment the default search path for module files. The format is the same as the shell’s PATH: one or more directory pathnames
separated by os.pathsep (e.g. colons on Unix or semicolons on
Windows). Non-existent directories are silently ignored.
In addition to normal directories, individual PYTHONPATH entries may refer to zipfiles containing pure Python modules (in either source
or compiled form). Extension modules cannot be imported from zipfiles.
The default search path is installation dependent, but generally begins with prefix/lib/pythonversion (see PYTHONHOME above). It is
always appended to PYTHONPATH.
An additional directory will be inserted in the search path in front of PYTHONPATH as described above under Interface options. The
search path can be manipulated from within a Python program as the
variable sys.path.
Note that the last sentence refers to the second method I mentioned, adding search a path inside your Python file.