mirror of
https://github.com/vale981/ray
synced 2025-03-06 10:31:39 -05:00
Remove numbuf from requirements for setup.py. (#54)
* Remove numbuf from requirements for setup.py. * Update documentation.
This commit is contained in:
parent
da6bcfcc70
commit
4b00c029ac
3 changed files with 3 additions and 4 deletions
|
@ -14,7 +14,7 @@ sudo easy_install pip # If you're using Anaconda, then this is unnecessary.
|
||||||
|
|
||||||
pip install numpy funcsigs colorama psutil redis --ignore-installed six
|
pip install numpy funcsigs colorama psutil redis --ignore-installed six
|
||||||
pip install --upgrade git+git://github.com/cloudpipe/cloudpickle.git@0d225a4695f1f65ae1cbb2e0bbc145e10167cce4 # We use the latest version of cloudpickle because it can serialize named tuples.
|
pip install --upgrade git+git://github.com/cloudpipe/cloudpickle.git@0d225a4695f1f65ae1cbb2e0bbc145e10167cce4 # We use the latest version of cloudpickle because it can serialize named tuples.
|
||||||
pip install --upgrade --verbose "git+git://github.com/ray-project/ray.git#egg=ray&subdirectory=numbuf"
|
pip install --upgrade --verbose "git+git://github.com/ray-project/ray.git#egg=numbuf&subdirectory=numbuf"
|
||||||
```
|
```
|
||||||
|
|
||||||
# Install Ray
|
# Install Ray
|
||||||
|
|
|
@ -14,7 +14,7 @@ sudo apt-get install -y cmake build-essential autoconf curl libtool python-dev p
|
||||||
|
|
||||||
pip install numpy funcsigs colorama psutil redis
|
pip install numpy funcsigs colorama psutil redis
|
||||||
pip install --upgrade git+git://github.com/cloudpipe/cloudpickle.git@0d225a4695f1f65ae1cbb2e0bbc145e10167cce4 # We use the latest version of cloudpickle because it can serialize named tuples.
|
pip install --upgrade git+git://github.com/cloudpipe/cloudpickle.git@0d225a4695f1f65ae1cbb2e0bbc145e10167cce4 # We use the latest version of cloudpickle because it can serialize named tuples.
|
||||||
pip install --upgrade --verbose "git+git://github.com/ray-project/ray.git#egg=ray&subdirectory=numbuf"
|
pip install --upgrade --verbose "git+git://github.com/ray-project/ray.git#egg=numbuf&subdirectory=numbuf"
|
||||||
```
|
```
|
||||||
|
|
||||||
# Install Ray
|
# Install Ray
|
||||||
|
|
|
@ -35,8 +35,7 @@ setup(name="ray",
|
||||||
"colorama",
|
"colorama",
|
||||||
"psutil",
|
"psutil",
|
||||||
"redis",
|
"redis",
|
||||||
"cloudpickle",
|
"cloudpickle"],
|
||||||
"numbuf==0.0.1"],
|
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
license="Apache 2.0")
|
license="Apache 2.0")
|
||||||
|
|
Loading…
Add table
Reference in a new issue