-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.sh
More file actions
executable file
·50 lines (48 loc) · 909 Bytes
/
Copy pathinstall.sh
File metadata and controls
executable file
·50 lines (48 loc) · 909 Bytes
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
#!/usr/bin/env bash
set -e
export PYTHON_VERSION=3.12
eval "$(mamba shell hook --shell bash)"
mamba create -y -n ml -c fastai -c nvidia -c conda-forge python="$PYTHON_VERSION"
mamba activate ml
mamba install -y -c fastai -c nvidia -c conda-forge \
accelerate \
beautifulsoup4 \
datasets \
diffusers \
einops \
fastai \
fastkaggle \
gast \
gradio \
html5lib \
ipykernel \
ipywidgets \
librosa \
lxml \
matplotlib \
nbdev \
numba \
numpy \
opencv \
openpyxl \
pandas \
patsy \
py7zr \
pyarrow \
pytables \
pytorch \
requests \
rise \
scikit-learn \
scipy \
seaborn \
sqlalchemy \
statsmodels \
timm \
torchaudio \
transformers[torch] \
wandb \
watchfiles
pip install -Uq torcheval pytorch-fid k-diffusion
pip install --no-deps -e /workspace/ml_env/course22p2
python -m ipykernel install --user --name ml --display-name "Python (ML)"