The instrbuilder requirements.txt file lists:
git+https://github.com/lucask07/ophyd@master#egg=ophyd
But this doesn't work and the master pip version of ophyd is installed.
After installation of instrbuilder via pip need to run the following pip commands to get the ophyd fork:
python -m pip uninstall ophyd
python -m pip install git+https://github.com/lucask07/ophyd@master#egg=ophyd
To test if the correct ophyd fork that supports Bluesky and Instrbuilder integration:
from ophyd.ee_instruments import generate_ophyd_obj
The import will only work if the ophyd fork is installed.
The instrbuilder requirements.txt file lists:
But this doesn't work and the master pip version of ophyd is installed.
After installation of instrbuilder via pip need to run the following pip commands to get the ophyd fork:
To test if the correct ophyd fork that supports Bluesky and Instrbuilder integration:
The import will only work if the ophyd fork is installed.