User Installation#
It is easiest to start installation with a fresh conda
environment. For
any packages that require installation of pre-compiled content (such as Qt,
PyQt, and others), install those packages with conda
. For pure Python code,
use pip
.
1export INSTALL_ENVIRONMENT_NAME=apsbits_env
2conda create -y -n "${INSTALL_ENVIRONMENT_NAME}" python=3.11 pyepics
3conda activate "${INSTALL_ENVIRONMENT_NAME}"
4pip install apsbits
Tip
Replace the text INSTALL_ENVIRONMENT_NAME
with the name you wish to use
for this conda environment.