9 lines
163 B
Bash
Executable File
9 lines
163 B
Bash
Executable File
#!/bin/bash
|
|
|
|
/usr/bin/python3.11 -m venv "testenv"
|
|
source testenv/bin/activate
|
|
|
|
pip install 'caproto'
|
|
pip install 'pytest'
|
|
pip install 'pyyaml'
|
|
pip install 'numpy' |