Skip to content

Commit

Permalink
Fix package installations
Browse files Browse the repository at this point in the history
  • Loading branch information
yunshengtian committed May 15, 2024
1 parent 93861d5 commit 79f2f71
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ git clone [email protected]:yunshengtian/RobotAssembly.git

### 2. Python environment

#### Step 1:

```
conda env create -f environment.yml
conda activate asap
Expand All @@ -37,7 +39,15 @@ conda activate asap
or

```
pip install numpy networkx matplotlib scipy pyglet rtree sortedcontainers scipy tqdm trimesh torch torch_geometric torch_sparse torch_scatter seaborn ikpy pyquaternion
pip install numpy networkx matplotlib scipy pyglet rtree sortedcontainers scipy tqdm trimesh torch torch_geometric seaborn ikpy pyquaternion
```

#### Step 2:

Due to dependency issues, the libraries below must be installed after the above step is complete.

```
pip install torch_sparse torch_scatter
```

### 3. Python binding of simulation
Expand Down
2 changes: 0 additions & 2 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,6 @@ dependencies:
- sortedcontainers==2.4.0
- torch==1.13.1
- torch-geometric==2.2.0
- torch-sparse==0.6.18
- torch-scatter==2.1.2
- tqdm==4.62.3
- traitlets==5.1.1
- trimesh==3.10.8
Expand Down

0 comments on commit 79f2f71

Please sign in to comment.