Skip to content
This repository has been archived by the owner on Apr 24, 2023. It is now read-only.

Commit

Permalink
added instructions for building scikit-geometry from scratch
Browse files Browse the repository at this point in the history
  • Loading branch information
poke1024 committed Feb 1, 2021
1 parent c6e531b commit 544485b
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,26 @@ Origami also provides additional tools for:

## Installation

### Basics

```
conda create --name origami python=3.7 -c defaults -c conda-forge --file origami/requirements/conda.txt
conda activate origami
pip install -r origami/requirements/pip.txt
```

## Troubleshooting scikit-geometry

On some systems (e.g. macOS 10.15.7) the `conda` installation of scikit-geometry is broken. In these cases,
you can always build scikit-geometry from scratch, i.e.:

```
conda activate origami
git clone https://github.com/scikit-geometry/scikit-geometry
cd scikit-geometry
python setup.py install
```

## General Usage

```
Expand Down

0 comments on commit 544485b

Please sign in to comment.