I wanted a Python 2.7 environment on anaconda,
$ conda create -n py27 python=2.7 anaconda
I created a virtual environment (py27) for Python 2.7.
When I installed Jupyter Notebook with enthusiasm, "Now, I'll open Jupyter Notebook !!!", I got the following error.
Looking at the error, Jupyter Notebook 6.0.2 can only be installed with Python 3.5 or higher ...
Drop and install the Jupyter Notebook version.
For the time being, I selected Jupyter 5.6.0 and it installed successfully.
Recommended Posts