Fix things on case-insensitive file systems.
[vapoursynth-svn.git] / doc / installation.rst
blobc8c52993ff637e9a2a876b9286e73e70a61480ff
1 Installation Instructions
2 =========================
4 Prerequisites
5 #############
7 First download and install the prerequisites:
8    * `Python 3.3 <http://www.python.org/>`_ (32 bit version)
9    * `Pismo File Mount Audit Package <http://www.pismotechnic.com/download/>`_ (only if you want to use the advanced virtual filesystem features)
11 Installation
12 ############
14 Simply run the VapourSynth installer. It should automatically detect everything.
16 Test it by opening a Python command line (should be added to your start menu) and type this::
18    import vapoursynth as vs
19    c = vs.get_core()
20    print(c.version())
22 After typing the final line you should see the version printed along with a few other lines describing the options used when instantiating the Core object.
23 If this for some reason fails there may be a bug in the installer or there are old copies of vapoursynth.pyd and vapoursynth.dll lying around.
25 Installation of VSFS
26 ####################
27 By default VSFS will be registered if the Pismo File Mount Audit Package was installed before VapourSynth.
28 If you install the Pismo File Mount Audit Package after VapourSynth and still want to use this feature either reinstall VapourSynth or register it from the commandline with "pfm register <path>\\vsfs.dll".
30 Compiling
31 #########
32 If you're not on Windows you have to compile VapourSynth yourself. Check out the source and follow the instructions in the INSTALL file.