Skip to content

Commit aa727ff

Browse files
committed
fix broken installation
1 parent bba2c72 commit aa727ff

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ We're happy to accept feedback and contributions.
3636
```bash
3737
git clone https://github.com/heronsystems/adeptRL
3838
cd adeptRL
39-
pip install .
39+
pip install -e .[all]
4040
```
4141

4242
**From docker:**

setup.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"profiler": ["pyinstrument>=2.0"],
1212
"atari": [
1313
"gym[atari]>=0.10",
14-
"opencv-python-headless>=3.4",
14+
"opencv-python-headless<4,>=3.4",
1515
]
1616
}
1717
test_deps = ["pytest"]
@@ -36,15 +36,14 @@
3636
python_requires=">=3.5.0",
3737
packages=find_packages(),
3838
install_requires=[
39-
"protobuf==3.13.0",
4039
"numpy>=1.14",
41-
"tensorboard>=1.14",
40+
"tensorflow<3,>=2.4.0",
4241
"cloudpickle>=0.5",
4342
"pyzmq>=17.1.2",
4443
"docopt>=0.6",
4544
"torch>=1.3.1",
4645
"torchvision>=0.4.2",
47-
"ray>=0.8.6",
46+
"ray[tune]<1,>=0.8.6",
4847
"pandas>=1.0.5",
4948
"msgpack<2,>=1.0.2",
5049
"msgpack-numpy<1,>=0.4.7",

0 commit comments

Comments
 (0)