-
Notifications
You must be signed in to change notification settings - Fork 3
/
INSTALL.txt
35 lines (18 loc) · 894 Bytes
/
INSTALL.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
Configuration and Installation of skprocrustes for further development
======================================================================
1. Configure a conda environment for the development:
$ conda create --name envname [pkgs]
In our case:
$ conda create --name envname scipy numpy matplotlib ipython
Activate the new environment:
$ source activate envname
To deactivate:
$ source deactivate
To list current environments:
$ conda env list
More details at https://conda.io/docs/using/envs.html [Official Conda Documentation]
2. With the environment activated, install the package by navigating to the root directory of the package and doing
$ python setup.py install
(Depending on your installation of conda/miniconda, you might have to prepend the above command with sudo)
3. Import the module and be happy!
>>> import skprocrustes