Skip to content
This repository was archived by the owner on Aug 16, 2022. It is now read-only.

Commit 78409fe

Browse files
committed
numpy is now required in advance before installation, due to spglib
1 parent 6f5f3d5 commit 78409fe

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

README.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,22 @@ Tilde is an intelligent data organizer and Python framework for computational (*
55

66
## Installation
77

8-
System packages ```build-essential python-dev libffi-dev``` (-dev or -devel) should be present. [Set up Python virtualenv](https://virtualenv.readthedocs.org) inside the Tilde folder and activate it with the command:
8+
System packages ```build-essential python-dev libffi-dev``` (-dev or -devel) should be present. Also, Python package ```python-numpy``` should be present. [Set up Python virtualenv](https://virtualenv.readthedocs.org) inside the Tilde folder (note ```--system-site-packages``` option to access ```python-numpy```):
9+
10+
```shell
11+
virtualenv --system-site-packages tilde
12+
```
13+
14+
Then activate virtualenv:
915

1016
```shell
1117
. bin/activate
1218
```
1319

1420
Virtualenv should be always used while working with the codebase.
1521
Run ```pip install -r requirements.txt``` to install Python dependencies.
16-
Test if the framework is ready:
22+
Note, that **pip** manager should be minimum of version 7.1.
23+
Then test if the framework is ready:
1724

1825
```shell
1926
./utils/tilde.sh -x

requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
numpy
21
ujson
32
bcrypt
43
nose

0 commit comments

Comments
 (0)