BCDA-APS / queueUI

PyQt5 User Interface for Bluesky Queueserver
Other
1 stars 0 forks source link

After `pip install`, started app locally with command: `python -m queueUI.app &` #9

Open prjemian opened 3 weeks ago

prjemian commented 3 weeks ago
          After `pip install`, started app locally with command: `python -m queueUI.app &`

Originally posted by @prjemian in https://github.com/BCDA-APS/queueUI/issues/8#issuecomment-2168289560

prjemian commented 3 weeks ago

Add this to the README page.

rodolakis commented 3 weeks ago

Would it be install as developer mode vs install as user?

Developer:

git clone https://github.com/BCDA-APS/queueUI.git
cd queueUI
conda env create --force -n queueUI -f ./env.yml
conda activate queueUI
pip install -e . --no-deps
queueUI &

User:

git clone https://github.com/BCDA-APS/queueUI.git
cd queueUI
conda env create --force -n queueUI -f ./env.yml
conda activate queueUI
pip install
python -m queueUI.app &
prjemian commented 3 weeks ago

At least as a developer, until #5 is complete.