File size: 760 Bytes
8896a5f |
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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
Installation
============
Requirements
------------
- python 3.7
- pytorch 1.5
- h5py
- matplotlib
- numpy
- pandas
- scikit-learn
- scipy
- seaborn
- setuptools
- tqdm
Optional GPU support: CUDA Toolkit, cuDNN
Set up environment
------------------
.. code-block:: bash
$ git clone https://github.com/samsledje/D-SCRIPT.git
$ cd D-SCRIPT
$ conda env create --file environment.yml # Edit this file to change CUDA version if necessary
$ conda activate dscript
Install from pip
----------------
.. code-block:: bash
pip install dscript
Build from source
-----------------
.. code-block:: bash
$ git clone https://github.com/samsledje/D-SCRIPT.git
$ cd D-SCRIPT
$ python setup.py build; python setup.py install
|