Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,26 @@ Windows 7. It works with Python 2 (from 2.7) and Python 3.

## Installation

To install this package:
### source

To install this package from [source](https://github.com/clade/PyDAQmx):

1. Install the NI-DAQmx driver.
2. Run `python setup.py install`.

### PyPI

To install this package from [PyPI](https://pypi.org/project/PyDAQmx/):

1. Install the NI-DAQmx driver.
2. Run `python -m pip install PyDAQmx`

### conda-forge

To install this package from [conda-forge](https://anaconda.org/conda-forge/pydaqmx):

1. Install the NI-DAQmx driver
2. Run `conda install -c conda-forge pydaqmx`

## License

Expand Down
6 changes: 6 additions & 0 deletions doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,12 @@ or using `pip <http://www.pip-installer.org/>`_:

pip install PyDAQmx

or using `conda-forge <https://anaconda.org/conda-forge/pydaqmx/>`_:

.. code-block:: sh

conda install -c conda-forge pydaqmx

You can also directly *move* the :file:`PyDAQmx` directory to a location that
Python can import from (the directory in which scripts using :mod:`PyDAQmx` are
run, :data:`sys.path`, etc.)
Expand Down
6 changes: 6 additions & 0 deletions doc/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ or using `pip <http://www.pip-installer.org/>`_:

pip install PyDAQmx

or using `conda-forge <https://anaconda.org/conda-forge/pydaqmx/>`_:

.. code-block:: sh

conda install -c conda-forge pydaqmx

You can also directly *move* the :file:`PyDAQmx` directory to a location that
Python can import from (the directory in which scripts using :mod:`PyDAQmx` are
run, :data:`sys.path`, etc.)
Expand Down