-
Notifications
You must be signed in to change notification settings - Fork 0
/
install_all.sh
executable file
·55 lines (41 loc) · 2.21 KB
/
install_all.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/bin/bash
# Copyright Peter Gagarinov.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
set -e
MSGCOLOR=`tput setaf 48`
NOCOLOR=`tput sgr0`
full_path=$(realpath $0)
dir_path=$(dirname $full_path)
printf "${MSGCOLOR}Installing conda package via conda from conda-forge channel...${NOCOLOR}\n"
# we install conda so that it is not installed later in setup.py
# because if conda is installed via pip it will make conda
# not functional as a stand-alone command (which is what we need)
conda install -y -c conda-forge conda pyyaml
printf "${MSGCOLOR}Installing conda package via conda from conda-forge channel: done${NOCOLOR}\n\n"
printf "${MSGCOLOR}Installing MLDevEnv management tool...${NOCOLOR}\n"
pip install -e $dir_path
printf "${MSGCOLOR}Installing MLDevEnv management tool: done${NOCOLOR}\n\n"
printf "${MSGCOLOR}Installing all dependencies for ML Development Environment...${NOCOLOR}\n"
mlenvtool conda_env_cur_update -y
printf "${MSGCOLOR}Installing all dependencies for ML Development Environment: done${NOCOLOR}\n\n"
printf "${MSGCOLOR}Installing enabling jupyterlab extensions...${NOCOLOR}\n"
jupyter server extension enable --py jupyterlab_code_formatter
printf "${MSGCOLOR}Installing enabling jupyterlab extensions: done${NOCOLOR}\n\n"
printf "${MSGCOLOR}Removing dataclasses as it is a part of python 3 now...${NOCOLOR}\n"
pip uninstall -y dataclasses
printf "${MSGCOLOR}Removing dataclasses as it is a part of python 3 now: done${NOCOLOR}\n\n"
printf "${MSGCOLOR}Checking if there is rogue JupyterLab installed...${NOCOLOR}\n"
$dir_path/check_if_rogue_jupyterlab_is_installed.sh
printf "${MSGCOLOR}Checking if there is rogue JupyterLab installed: done${NOCOLOR}\n\n"
printf "${MSGCOLOR}----------SUCCESS------------${NOCOLOR}\n"