|
38 | 38 | }, |
39 | 39 | "outputs": [], |
40 | 40 | "source": [ |
41 | | - "#@title setup **RFdiffusion** (~2m)\n", |
| 41 | + "#@title setup **RFdiffusion** (~3min)\n", |
42 | 42 | "%%time\n", |
43 | 43 | "import os, time, signal\n", |
44 | 44 | "import sys, random, string, re\n", |
|
58 | 58 | "if not os.path.isdir(\"RFdiffusion\"):\n", |
59 | 59 | " print(\"installing RFdiffusion...\")\n", |
60 | 60 | " os.system(\"git clone https://github.com/sokrypton/RFdiffusion.git\")\n", |
61 | | - " os.system(\"pip -q install jedi omegaconf hydra-core icecream pyrsistent\")\n", |
62 | | - " os.system(\"pip install dgl -f https://data.dgl.ai/wheels/cu121/repo.html\")\n", |
63 | | - " os.system(\"cd RFdiffusion/env/SE3Transformer; pip -q install --no-cache-dir -r requirements.txt; pip -q install .\")\n", |
| 61 | + " os.system(\"pip install jedi omegaconf hydra-core icecream pyrsistent pynvml decorator\")\n", |
| 62 | + " os.system(\"pip install git+https://github.com/NVIDIA/dllogger#egg=dllogger\")\n", |
| 63 | + " # 17Mar2024: adding --no-dependencies to avoid installing nvidia-cuda-* dependencies\n", |
| 64 | + " os.system(\"pip install --no-dependencies dgl==2.0.0 -f https://data.dgl.ai/wheels/cu121/repo.html\")\n", |
| 65 | + " os.system(\"pip install --no-dependencies e3nn==0.3.3 opt_einsum_fx\")\n", |
| 66 | + " os.system(\"cd RFdiffusion/env/SE3Transformer; pip install .\")\n", |
64 | 67 | " os.system(\"wget -qnc https://files.ipd.uw.edu/krypton/ananas\")\n", |
65 | 68 | " os.system(\"chmod +x ananas\")\n", |
66 | 69 | "\n", |
|
0 commit comments