-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathsetup.sh
32 lines (21 loc) · 791 Bytes
/
setup.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
#!/bin/bash
# Commands to setup a new conda environment and install all the necessary packages
# See the environment.yaml file for "conda env export > environment.yaml" after running this.
set -e
conda create -n BCI python=3.10.8 -y
conda activate BCI
conda install numpy matplotlib tqdm scikit-image jupyterlab -y
conda install -c conda-forge accelerate -y
pip install clip-retrieval clip pandas matplotlib ftfy regex kornia umap-learn
pip install dalle2-pytorch
pip install open_clip_torch
pip install transformers==4.28.0.dev0
pip install diffusers==0.24.0
pip install braindecode==0.8.1
pip install torchvision==0.15.2 torch==2.0.1
pip install info-nce-pytorch==0.1.0
pip install pytorch-msssim
pip install reformer_pytorch
pip install mne
pip install wandb
pip install einops