forked from numenta/nupic.research
-
Notifications
You must be signed in to change notification settings - Fork 0
/
environment.yml
73 lines (65 loc) · 1.59 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
62
63
64
65
66
67
68
69
70
71
72
# This file may be used to create an environment using:
# $ conda env create --name <env> --file <this file>
# platform: osx-64
name: nupic.research
channels:
- defaults
- conda-forge
- pytorch
- fastai
dependencies:
- python=3.7
- pip
# See nupic.torch requirements.txt
- pytorch=1.3.1
# See requirements.txt
- awscli
- boto3
- elasticsearch
- fastai
- jupyter
- librosa=0.7.1
- matplotlib
- numpy>=1.17
- pandas
- pillow=6.0.0
- python-dateutil=2.8.0
- python-dotenv
- requests
- scikit-image
- seaborn
- tabulate
- torchvision=0.4.2
- tqdm
- h5py
# ray[debug,dashboard]
- aiohttp
- psutil
- setproctitle
# See requirements-dev.txt
- black=19.3b0
- flake8=3.7.8
- flake8-black=0.1.1
- flake8-bugbear=19.8.0
- flake8-builtins=1.4.1
- flake8-comprehensions=2.2.0
- flake8-copyright=0.2.2
- flake8-mutable=1.2.0
- flake8-print=3.1.0
- flake8-quotes=2.1.0
- isort=4.3.21
- pep8-naming=0.8.2
- pytest=5.2.1
- pytest-runner=5.1
# Dependencies not available in conda
- pip:
# Install nupic.torch and nupic.tensorflow libraries in develop mode.
# Assume both libraries were cloned into ${HOME}/nta folder
# If you don't want to install nupic.torch and nupic.tensorflow in develop
# mode just comment the following lines and use the versions indicated in
# the requirements.txt file
- -e ${HOME}/nta/nupic.torch --no-binary :all
- -e ${HOME}/nta/nupic.tensorflow --no-binary :all
# Install nupic.research in develop mode
- -r requirements-dev.txt
- -e . --no-binary :all