Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ubuntu-dev/ubuntu-dev.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ RUN __LLVM_VERSION__="5.0" \
&& pip install --upgrade pip \
&& pip install --upgrade virtualenv \
&& pip3 install --upgrade pip \

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what if you do that before pip install --upgrade pip?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actually I don't think this solves the problem (pip install --upgrade pip says Requirement already up-to-date: pip in /usr/local/lib/python2.7/dist-packages and leaves /usr/local/bin/pip on Python 3.5).

&& cp /usr/local/bin/pip2 /usr/local/bin/pip \
&& echo "SHELL=/bin/bash\nTERM=xterm-256color\nDISPLAY=:98\nCC=clang-${__LLVM_VERSION__}\nCXX=clang++-${__LLVM_VERSION__}" >> /etc/environment
ENV SHELL /bin/bash
ENV CC clang-5.0
Expand Down