Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

How to install miniconda in HDP ?

avatar
Explorer

Can someone provide the link to install (wget) miniconda in HDP for zeppelin use?

The miniconda python version must be 3.4.x

1 ACCEPTED SOLUTION

avatar

@Victor

I usually install following the next steps:

1. Locate the version you need to install by opening the following link on your browser

https://repo.continuum.io/miniconda/

for example lets say you decided to use https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh

2. Download the installer

yum install wget bzip2

wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh

chmod +x Miniconda3-latest-Linux-x86_64.sh

3. Run the installer and follow the steps

./Miniconda3-latest-Linux-x86_64.sh

Note: I usually select a install location like /opt/miniconda3 or similar that can be shared and used by different users

HTH

*** If you found this answer addressed your question, please take a moment to login and click the "accept" link on the answer.

View solution in original post

1 REPLY 1

avatar

@Victor

I usually install following the next steps:

1. Locate the version you need to install by opening the following link on your browser

https://repo.continuum.io/miniconda/

for example lets say you decided to use https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh

2. Download the installer

yum install wget bzip2

wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh

chmod +x Miniconda3-latest-Linux-x86_64.sh

3. Run the installer and follow the steps

./Miniconda3-latest-Linux-x86_64.sh

Note: I usually select a install location like /opt/miniconda3 or similar that can be shared and used by different users

HTH

*** If you found this answer addressed your question, please take a moment to login and click the "accept" link on the answer.