-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpip_install_pgel.sh
executable file
·53 lines (41 loc) · 1001 Bytes
/
pip_install_pgel.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
53
# CLEAR PIP CACHE
# rm -r ~/.cache/pip/selfcheck/
# python -m pip install --upgrade pip
# CLEAN CONDA CACHE
# conda clean -a -y
# CREATE NEW CONDA ENVIRONMENT
conda create -n pgel-abinit python=3.10 -y
conda activate pgel-abinit
conda install conda=23.10.0
conda install -y -c conda-forge \
ase \
pymatgen \
nglview \
openmpi \
abinit
#tblite \
#tblite-python \
#xtb-python \
#jupyterlab \
#ffmpeg \
#imageio \
#statsmodels \
#asap3 \
#gpaw \
#lammps \
#pipreqs \
#pre_commit \
#autopep8 \
## needed for ANI-ASE
#fortran-compiler \
#libcublas \
pip install matgl
ext_pck_dir='/home/mdi0316/WORK_TME022/external_packages/'
cd $ext_pck_dir
git clone git@github.com:ehermes/ased3.git
for folder in ase ; do
cd $ext_pck_dir/$folder
echo pip install $folder
git pull
pip install .
done