Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>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.</p> <p>From <a href="http://docs.python.org/using/cmdline.html#envvar-PYTHONPATH" rel="nofollow">the documentation</a>:</p> <blockquote> <p>PYTHONPATH¶</p> <p>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.</p> <p>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.</p> <p>The default search path is installation dependent, but generally begins with prefix/lib/pythonversion (see PYTHONHOME above). It is always appended to PYTHONPATH.</p> <p>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.</p> </blockquote> <p>Note that the last sentence refers to the second method I mentioned, adding search a path inside your Python file.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload