| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [View Raw Code] [Original HTTPS Page] |
This is a simple guide for developers to setup their development environment. You do not need to read this if you are just using Orca APIs.
git clone https://github.com/intel-analytics/BigDL.gitcd BigDL/scala
./make-dist.shAfter running the above code there will be a BigDl/dist directory consisting of the built artifact.
pip install pyspark==2.4.3 # ./make-dist.sh build against spark 2.4.3 by default
pip install ray==1.9.2
pip install aiohttp==3.9.0 # dependencies introduced by ray, latest version has api changes
pip install aioredis==1.3.1 # dependencies introduced by ray, latest version has api changes
pip install pytest pyarrow pandas
pip install bigdl-math bigdl-tf # dependencies introduced by bigdl-orca
pip3 install torch==1.10.1+cpu torchvision==0.11.2+cpu torchaudio==0.10.1+cpu -f https://download.pytorch.org/whl/cpu/torch_stable.htmlcd BigDL/python/orca
source dev/prepare_env.shcd BigDL/python/orca
pytest test/bigdl/orca/learn/spark/test_pytorch_estimator.py| Back | FazBrowse Home | New Git URL |