We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04da476 commit 892cfbcCopy full SHA for 892cfbc
.github/unittest/linux_libs/scripts_gym/install.sh
@@ -49,16 +49,16 @@ pip install -U charset-normalizer
49
if [[ "$RELEASE" == 0 ]]; then
50
conda install "anaconda::cmake>=3.22" -y
51
pip3 install "pybind11[global]"
52
- pip3 install git+https://github.com/pytorch/tensordict.git
+ pip3 install git+https://github.com/pytorch/tensordict.git --no-deps
53
else
54
- pip3 install tensordict
+ pip3 install tensordict --no-deps
55
fi
56
57
# smoke test
58
python -c "import tensordict"
59
60
printf "* Installing torchrl\n"
61
-python -m pip install -e . --no-build-isolation
+python -m pip install -e . --no-build-isolation --no-deps
62
python -c "import torchrl"
63
64
## Reinstalling pytorch with specific version
0 commit comments