forked from RUB-Bioinf/OpenVibSpec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install_packages.sh
25 lines (24 loc) · 1009 Bytes
/
install_packages.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#
# Original solution via StackOverflow:
# http://stackoverflow.com/questions/35802939/install-only-available-packages-using-conda-install-yes-file-requirements-t
#
#
# Install via `conda` directly.
# This will fail to install all
# dependencies. If one fails,
# all dependencies will fail to install.
#-------------------------------------------------------------------------------------------------------------
conda create -n py38 python=3.8
source activate py38
# ------------------------------------------------------------------------------------------------------------
conda install --yes --file requirements.txt
#
# To go around issue above, one can
# iterate over all lines in the
# requirements.txt file.
#
while read requirement; do conda install --yes $requirement; done < requirements.txt
# Registration Problem
pip install git+https://github.com/BioSpecNorway/IRmHiRegistration.git
# MRMR 4 best_practices in (Raman)Spectrsocopic DL
pip install git+https://github.com/smazzanti/mrmr