SpencerPark/ijava-binder

Python 2?

Opened this issue · 1 comments

Wow this is so awesome and exactly what I was looking for! Thank you.

So I launched my Binder notebook with the ijava-binder Dockerfile and all the requirements, and now Java works, which is great. But for some reason my default Python in the Binder notebook has been downgraded to 2.7 and also pip no longer works? Do you know what might be happening here?

Hi @melaniewalsh, glad you found the project useful :)

Python 3.5 is installed in addition to 2.7, python refers to 2 and python3 to 3. Likewise, the pip package (RUN apt-get install -y python3-pip) installs it under pip3 but I always run python3 -m pip out of habit anyways as I've got too many python roots on my machine and like to specify.

Out of curiosity, what type of stack are you trying to setup with this image? Maybe I can help with that?