2021-11-04 08:18:44 +00:00
|
|
|
cd Downloads
|
2022-09-15 14:41:10 +00:00
|
|
|
git clone https://gitlab.cern.ch/cara/caimira.git
|
2022-09-09 14:11:53 +00:00
|
|
|
cd caimira
|
2021-11-05 10:46:04 +00:00
|
|
|
if [[ `uname -m` == 'arm64' ]]; then
|
|
|
|
|
pip3 install scipy --index-url=https://pypi.anaconda.org/scipy-wheels-nightly/simple
|
2021-11-05 14:47:50 +00:00
|
|
|
pip3 install Cython
|
2021-11-05 10:46:04 +00:00
|
|
|
pip3 install -U --no-use-pep517 scikit-learn
|
|
|
|
|
fi
|
2021-11-04 08:18:44 +00:00
|
|
|
pip3 install -e .
|
2021-11-08 11:02:41 +00:00
|
|
|
echo "############################################"
|
2022-09-09 14:11:53 +00:00
|
|
|
echo "CAiMIRA is now running at http://localhost:8080"
|
2021-11-08 11:02:41 +00:00
|
|
|
echo "############################################"
|
2022-09-09 14:11:53 +00:00
|
|
|
python3 -m caimira.apps.calculator
|
2022-04-06 09:48:34 +00:00
|
|
|
|