forked from M-Labs/artiq
ship examples with package
This commit is contained in:
parent
2dfc1a8d17
commit
affe4d45aa
|
@ -18,11 +18,11 @@ __pycache__/
|
|||
|
||||
/artiq/test/results
|
||||
/artiq/test/h5types.h5
|
||||
/examples/master/results
|
||||
/examples/master/last_rid.pyon
|
||||
/examples/master/dataset_db.pyon
|
||||
/examples/sim/results
|
||||
/examples/sim/dataset_db.pyon
|
||||
/artiq/examples/master/results
|
||||
/artiq/examples/master/last_rid.pyon
|
||||
/artiq/examples/master/dataset_db.pyon
|
||||
/artiq/examples/sim/results
|
||||
/artiq/examples/sim/dataset_db.pyon
|
||||
|
||||
# recommended location for testbed
|
||||
/run
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
graft artiq/runtime
|
||||
graft artiq/examples
|
||||
include artiq/gui/logo.svg
|
||||
include versioneer.py
|
||||
include artiq/_version.py
|
||||
|
|
|
@ -204,7 +204,7 @@
|
|||
"host": "::1",
|
||||
"port": 6283,
|
||||
"target_name": "camera_sim",
|
||||
"command": "./remote_exec_controller.py"
|
||||
"command": "python3.5 -m artiq.examples.remote_exec_controller"
|
||||
},
|
||||
"camera_sim_rexec": {
|
||||
"type": "controller_aux_target",
|
|
@ -6,6 +6,15 @@ FAQ
|
|||
How do I ...
|
||||
============
|
||||
|
||||
find ARTIQ examples?
|
||||
--------------------
|
||||
|
||||
The examples are installed in the ``examples`` folder of the ARTIQ package. You can find where the ARTIQ package is installed on your machine with: ::
|
||||
|
||||
python3.5 -c "import artiq; print(artiq.__path__[0])"
|
||||
|
||||
Copy the ``examples`` folder from that path into your home/user directory, and start experimenting!
|
||||
|
||||
prevent my first RTIO command from causing an underflow?
|
||||
--------------------------------------------------------
|
||||
|
||||
|
|
Loading…
Reference in New Issue