Skip to content
Snippets Groups Projects
Unverified Commit 0e4922c2 authored by Haonan Yu's avatar Haonan Yu Committed by GitHub
Browse files

Update README.md about installation deps (#1449)

Added the missing Boost after PR fast parallel environment
parent e8bcfb33
No related branches found
No related tags found
No related merge requests found
......@@ -52,6 +52,7 @@ Read the ALF documentation [here](https://alf.readthedocs.io/).
## Installation
#### OS softwares
The following installation was tested on Ubuntu20.04 with CUDA 11.4.
Python3.8 (and above) is currently supported by ALF. Note that some pip packages (e.g., pybullet) need python dev files, so make sure python3-dev is installed:
......@@ -60,6 +61,13 @@ Python3.8 (and above) is currently supported by ALF. Note that some pip packages
sudo apt install -y python3-dev
```
Boost is also required by ALF for fast parallel environments.
```
sudo apt install libboost-all-dev
```
#### Python environment
[Virtualenv](https://virtualenv.pypa.io/en/latest/) is recommended for the installation. After creating and activating a virtual env, you can run the following commands to install ALF:
```
......@@ -68,7 +76,9 @@ cd alf
pip install -e . --extra-index-url https://download.pytorch.org/whl/cu113
```
**For Nix Users**: There is a built-in Nix-based development environment defined in [flake.nix](./flake.nix). To activate it, run
#### For Nix Users
There is a built-in Nix-based development environment defined in [flake.nix](./flake.nix). To activate it, run
```bash
$ nix develop
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment