Our Community is getting an upgrade! To get everything ready for the relaunch, we’ll be placing the site in read-only mode starting September 21st.
We really appreciate your understanding while we get things set up behind the scenes. Catch up on all the exciting details about the move here.
Need help or have questions? Drop us a line at [email protected]

Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

How to install miniconda in HDP ?

avatar
New Member

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.