From 4da8fd8c7a2b7a783a1a3c8b3caff217f23ebb4e Mon Sep 17 00:00:00 2001 From: Deepak Govindarajan Date: Tue, 19 Sep 2023 23:44:51 -0500 Subject: [PATCH] Update README.md instruction for tensorboardX install --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 8fbc4dac0..7a1ef315f 100644 --- a/README.md +++ b/README.md @@ -39,6 +39,9 @@ conda install pytorch=0.4.1 torchvision=0.2.1 -c pytorch pip install tensorboardX==1.4 conda install opencv=3.3.1 # just needed for evaluation ``` + +**__NOTE:__** If you are having trouble running `pip install tensorboardX==1.4`, try running `pip install --user tensorboardX==1.4`, or running the terminal with admin priviliges. + We ran our experiments with PyTorch 0.4.1, CUDA 9.1, Python 3.6.6 and Ubuntu 18.04. We have also successfully trained models with PyTorch 1.0, and our code is compatible with Python 2.7. You may have issues installing OpenCV version 3.3.1 if you use Python 3.7, we recommend to create a virtual environment with Python 3.6.6 `conda create -n monodepth2 python=3.6.6 anaconda `.