forked from numenta/nupic.research
-
Notifications
You must be signed in to change notification settings - Fork 0
/
environment.yml
62 lines (54 loc) · 1.15 KB
/
environment.yml
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
51
52
53
54
55
56
57
58
59
60
61
# This file may be used to create an environment using:
# $ conda create --name <env> --file <this file>
# platform: osx-64
name: nupic.research
channels:
- defaults
- conda-forge
- pytorch
dependencies:
- python=3.7
- pip
# See requirements.txt
- pytorch
- torchvision
- numpy
- matplotlib
- pandas
- tabulate
- librosa
- scikit-image
- requests
- tqdm
- python-dotenv
- elasticsearch
# See requirements-dev.txt
- pytest-runner
- pytest
- black
- isort
- flake8
- flake8-black
- flake8-bugbear
- flake8-builtins
- flake8-comprehensions
- flake8-copyright
- flake8-mutable
- flake8-print
- pep8-naming
- flake8-quotes
- pip:
# Dependencies not available in conda
- ray
# See requirements-dev.txt
- docformatter
- flake8-breakpoint
- flake8-mypy
- flake8-isort
- flake8-fixme
# Install nupic.torch and nupic.tensorflow libraries in develop mode
# Assume both libraries were cloned under ${HOME}/nta folder
- -e ${HOME}/nta/nupic.torch
- -e ${HOME}/nta/nupic.tensorflow
# Install nupic.research in develop mode
- -e .