Issue
I'm new to the programming environments. Last year, I had a course where we installed (without understanding what we were doing) miniconda with python 3.7 and jupyter notebook. This year I need anaconda so I installed it with the latest version of python. My question is: will there be a conflict between anaconda and miniconda if I use the shell commands? When I type "jupyter notebook" in the shell, will it open with miniconda which I installed first or anaconda?
Solution
Are you on a linux system? You can try with
type jupyter-notebook
This will show you where the binary is located. For example ~/miniconda3/bin. The path of the bin-folder of your anaconda/miniconda installation is usually added to your path-variable in the ~/.bashrc file.
PS: You can find out which version of python/python3 you are using by typing
python --version
or
python3 --version
Answered By - p0ny
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.