Lines Matching +full:tox +full:- +full:env
3 …extension for [Arm NN SDK](https://developer.arm.com/ip-products/processors/machine-learning/arm-n…
19 1. You have Python 3.6+ installed system-side. The package is not compatible with older Python vers…
20 2. You have python3.6-dev installed system-side. This contains header files needed to build PyArmNN…
22 …python3.6-dev build-essential checkinstall libreadline-gplv2-dev libncursesw5-dev libssl-dev libsq…
23 …To install it follow the guide on [SWIG GitHub](https://github.com/swig/swig/wiki/Getting-Started).
29 python -m venv env
30 source env/bin/activate
55 -DBUILD_PYTHON_SRC=1
61 -DSWIG_EXECUTABLE=<path_to_swig_executable>
72 * Linux x86 64bit machine: pyarmnn-32.0.0-cp36-cp36m-*linux_x86_64*.whl
73 * Linux Aarch 64 bit machine: pyarmnn-32.0.0-cp36-cp36m-*linux_aarch64*.whl
104 …h64-linux-gnu/8/', <...> ,'/lib/', '/usr/lib/'). Please install ArmNN to one of the standard locat…
112 $ python -c "import pyarmnn as ann;print(ann.GetVersion())"
124 $ python -m venv env
125 $ source env/bin/activate
135 $ python swig_generate.py -v
150 $ python -c "import pyarmnn as ann;print(ann.GetVersion())"
222 ## Tox for automation
224 To make things easier *tox* is available for automating individual tasks or running multiple comman…
227 $ tox <task_name>
230 See *tox.ini* for the list of tasks. You may also modify it for your own purposes. To dive deeper i…
232 ## Running unit-tests
242 $ python -m pytest test/ -v
244 or run tox which will do both:
246 $ tox