-
Notifications
You must be signed in to change notification settings - Fork 821
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed the iPython and SSL with Tornado issues using GPU. #92
Conversation
- Fixed the [iPython](#86 (comment)) - Fixed the [SSL module](#84)
Dockerfile.gpu
Outdated
@@ -1,4 +1,4 @@ | |||
FROM nvidia/cuda:8.0-cudnn5-devel-ubuntu14.04 | |||
FROM nvidia/cuda:9.2-cudnn7-devel-ubuntu16.04 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is fix for Caffe.
@@ -10,6 +10,16 @@ ARG LASAGNE_VERSION=v0.1 | |||
ARG TORCH_VERSION=latest | |||
ARG CAFFE_VERSION=master | |||
|
|||
ARG PYTHON_BASEDEPS="build-essential python-pip" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a fix for SSL.
python-pandas \ | ||
python-sklearn \ | ||
python-sympy \ | ||
&& \ | ||
python-sympy |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a fix for ipython
@@ -155,7 +183,9 @@ RUN apt-get update && apt-get install -y \ | |||
rm -rf /var/lib/apt/lists/* | |||
|
|||
# Install Caffe | |||
RUN git clone -b ${CAFFE_VERSION} --depth 1 https://github.com/BVLC/caffe.git /root/caffe && \ | |||
# Use video friendly Caffe instead. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
use video friendly caffe.
Closed #86 #84