I have installed Anaconda but the matpoltlib for python 3 did not work. So I tried to install miniconda.
$ jupyter notebook
then Jupiter notebook starts. But this message appears:
pyenv: conda: command not found
The jupyter command exists in these Python versions:
anaconda3-4.0.0
miniconda3-4.1.11
How to choose miniconda?
conda
environments are the way to work with different Python versions.Create new environment:
activate it:
Now, you can install the needed libraries:
and start the notebook server:
Using this method, you can make more environments for other Python versions or combinations of library versions.
If
conda
refuses to start, you can use:to see what
conda
commands are available.Choose the full path you want, e.g.:
to invoke
conda
.