Skip to content

Commit 839cf97

Browse files
committed
update README 07/12
1 parent 97ef4a8 commit 839cf97

File tree

7 files changed

+7829
-350
lines changed

7 files changed

+7829
-350
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,7 @@ node_modules/
148148
notebooks/recombined
149149
notebooks/get_proportions.ipynb
150150
notebooks/all_predictions_all_recombinants.json
151+
notebooks/mainz
151152

152153
stories/
153154
.storybook/

README.md

Lines changed: 28 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,41 @@ Clone the repo locally:
4646
git clone https://{YOUR_GITHUB_TOKEN}@github.com/IBM/mimicri.git
4747
```
4848

49-
Navigate to your local cloned mimicri folder and install dependencies:
49+
Navigate to your local cloned mimicri folder and install dependencies.
50+
51+
#### THIS IS A NEW INSTALLATION AS OF 07/12/2024
52+
53+
A recent circular dependency error in the torch module requires a new installation of the libraries needed to run MiMICRI. **If this is your first time installing MiMICRI use:**
5054

5155
```
56+
conda install pytorch torchvision -c pytorch
57+
5258
pip install -r requirements.txt
5359
5460
pip install mimicri
5561
```
5662

57-
The package should show up when you run:
63+
**If you have installed MiMICRI before, please first uninstall all existing installations of torch and torchvision:**
64+
65+
```
66+
pip uninstall torch
67+
pip uninstall torchvision
68+
69+
conda uninstall torch
70+
conda uninstall torchvision
71+
```
72+
73+
Then run:
74+
75+
```
76+
conda install pytorch torchvision -c pytorch
77+
78+
pip install -r requirements.txt
79+
80+
pip install mimicri
81+
```
82+
83+
Once the dependencies have been installed correctly, the MiMICRI package should show up with:
5884

5985
```
6086
jupyter labextension list

0 commit comments

Comments
 (0)