summaryrefslogtreecommitdiff
path: root/docs/configuring.rst
blob: 867722e9037f043c5be61915005168892bf0886a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
.. _configuring:

Configuring the backend
============================
Currently there are two backends available: The one included in pyvisa which
uses the NI library. This is used by default and the configuration is described
in the next chapter.
And then there is pyvia-py a pure python implementation of the VISA libary.
It can be selected by passing a parameter to the ResourceManager:

    >>> visa.ResourceManager('@py')

Alternativly it can also be selected by setting the environment variable
PYVISA_LIBRARY. It takes the same values as the ResourceManager constructor.

Configuring the NI backend
==========================

.. note:: The NI backend requires that you install first the NI-VISA library. You can get
          info here: (:ref:`getting_nivisa`)


In most cases PyVISA will be able to find the location of the shared visa library.
If this does not work or you want to use another one, you need to provide the library
path to the :class:`pyvisa.highlevel.ResourceManager` constructor::

    >>> rm = ResourceManager('Path to library')


You can make this library the default for all PyVISA applications by using
a configuration file called :file:`.pyvisarc` (mind the leading dot) in your
`home directory`_.

==========================  ==================================================
Operating System            Location
==========================  ==================================================
Windows NT                  :file:`<root>\\WINNT\\Profiles\\<username>`
--------------------------  --------------------------------------------------
Windows 2000, XP and 2003   :file:`<root>\\Documents and Settings\\<username>`
--------------------------  --------------------------------------------------
Windows Vista, 7 or 8       :file:`<root>\\Users\\<username>`
--------------------------  --------------------------------------------------
Mac OS X                    :file:`/Users/<username>`
--------------------------  --------------------------------------------------
Linux                       :file:`/home/<username>` (depends on the distro)
==========================  ==================================================

For example in Windows XP, place it in your user folder "Documents and Settings"
folder, e.g. :file:`C:\\Documents and Settings\\smith\\.pyvisarc` if "smith" is
the name of your login account.

This file has the format of an INI file. For example, if the library
is at :file:`/usr/lib/libvisa.so.7`, the file :file:`.pyvisarc` must
contain the following::

   [Paths]

   VISA library: /usr/lib/libvisa.so.7

Please note that `[Paths]` is treated case-sensitively.

You can define a site-wide configuration file at
:file:`/usr/share/pyvisa/.pyvisarc` (It may also be
:file:`/usr/local/...` depending on the location of your Python).
Under Windows, this file is usually placed at
:file:`c:\\Python27\\share\\pyvisa\\.pyvisarc`.

If you encounter any problem, take a look at the :ref:`faq`. There you will find the
solutions to common problem as well as useful debugging techniques. If everything fails,
feel free to open an issue in our `issue tracker`_

.. _`home directory`: http://en.wikipedia.org/wiki/Home_directory
.. _`issue tracker`: https://github.com/pyvisa/pyvisa/issues