forked from ARM-software/daq-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- List python 3 as a supported version - Add information for installing from GitHub
- Loading branch information
1 parent
ab7eb99
commit a15c91d
Showing
3 changed files
with
15 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,10 +15,16 @@ part of this package to configure and collect measurements from that DAQ. | |
Installation | ||
------------ | ||
|
||
:: | ||
From PyPI:: | ||
|
||
sudo -H pip install daqpower | ||
|
||
The latest developement version from GitHub:: | ||
|
||
git clone [email protected]:ARM-software/daq-server.git daq-server | ||
cd daq-server | ||
sudo -H python setup.py install | ||
|
||
|
||
Usage | ||
----- | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -101,7 +101,7 @@ The DAQ power measurement solution is implemented in daqpower Python library, | |
the package which is available for download via pip or from `Github`_. | ||
|
||
- Install NI-DAQmx driver, as described in the previous section. | ||
- Install Python 2.7. | ||
- Install Python 2.7 or Python3. | ||
- Download and install ``pip``, ``numpy`` and ``twisted`` Python packages. | ||
These packages have C extensions, an so you will need a native compiler set | ||
up if you want to install them from PyPI. As an easier alternative, you can | ||
|
@@ -111,6 +111,12 @@ the package which is available for download via pip or from `Github`_. | |
|
||
sudo -H pip install daqpower | ||
|
||
Or alternatively install the latest development version from GitHub:: | ||
|
||
git clone [email protected]:ARM-software/daq-server.git daq-server | ||
cd daq-server | ||
sudo -H python setup.py install | ||
|
||
|
||
This should automatically download and install ``PyDAQmx`` package as well | ||
(the Python bindings for the NI-DAQmx driver). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters