We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdc5053 commit 94ff84cCopy full SHA for 94ff84c
.dockerignore
@@ -0,0 +1 @@
1
+**/.*
Dockerfile.py27
@@ -11,6 +11,8 @@ ENV PATH $JAVA_HOME/bin:$PATH
11
ENV NAB /usr/local/src/nab
12
13
ADD . $NAB
14
+WORKDIR $NAB
15
+RUN python -m pip install -e .
16
17
# Run Numenta detectors
18
RUN echo "Running numenta detectors in Python 2.7..."
requirements.txt
@@ -1,4 +1,5 @@
pandas==0.20.3
2
simplejson==3.11.1
3
boto3==1.9.134
4
-scikit-learn==0.21.1
+scikit-learn==0.21.1; python_version >= '3.5'
5
+scikit-learn==0.20.1; python_version < '3.5'
0 commit comments