Skip to content

Commit 115c6a5

Browse files
committed
ray installation fixed
1 parent 012ea3c commit 115c6a5

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/install-from-pypi.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ jobs:
2121
run: |
2222
python -m pip install --upgrade pip
2323
pip install tensorflow==2.2.0
24-
pip install ray[rllib,debug]==0.9.0
24+
wget 'https://ray-wheels.s3-us-west-2.amazonaws.com/master/8d0c1b5e068853bf748f72b1e60ec99d240932c6/ray-0.9.0.dev0-cp36-cp36m-manylinux1_x86_64.whl'
25+
pip install ray-0.9.0.dev0-cp36-cp36m-manylinux1_x86_64.whl[rllib,debug]
2526
- name: Install from PyPI
2627
run: |
2728
pip install -i https://test.pypi.org/pypi/ --extra-index-url https://pypi.org/simple mdp-playground

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ MDP Playground is also on PyPI. As with the manual installation, we recommend us
5858
```bash
5959
# for production use:
6060
pip install tensorflow==2.2.0
61-
pip install ray[rllib,debug]==0.9.0
61+
wget 'https://ray-wheels.s3-us-west-2.amazonaws.com/master/8d0c1b5e068853bf748f72b1e60ec99d240932c6/ray-0.9.0.dev0-cp36-cp36m-manylinux1_x86_64.whl'
62+
pip install ray-0.9.0.dev0-cp36-cp36m-manylinux1_x86_64.whl[rllib,debug]
6263
pip install mdp_playground
6364

6465
# for the discrete toy experiments:

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373

7474
entry_points={
7575
'console_scripts': """
76-
run-mdpp-experiments = run-experiments:main
76+
run-mdpp-experiments = run_experiments:main
7777
"""
7878
}
7979
)

0 commit comments

Comments
 (0)