- Get All Questions & Answer for CDP Generalist Exam (CDP-0011) and trainings.
- Get All Questions & Answer for CDP Administrator - Private Cloud Base Exam CDP-2001 and trainings.
- Get All Questions & Answer for CDP Data Developer Exam CDP-3001 and trainings.
This Question is from QuickTechie Cloudera CDP Certification Preparation Kit.
Tutorial Link
SandboxVersion: HDP 2.3.2 AmbariVersion2.1.2 Hadoop stack version:Hadoop2.7.1.2.3.2.0-2950
-------------------------------------------
Issue 1: No available when executing command yum groupinstall “Development tools“
Resolution: This occurs when you copy and pasted the command. The double quotes used are wrong. Use " instead. There run the following command with the right double quotes:
yum groupinstall "Development tools"
The same occurs with pip install “ipython[notebook]“
Instead run
pip install "ipython[notebook]"
- Get All Questions & Answer for CDP Generalist Exam (CDP-0011) and trainings.
- Get All Questions & Answer for CDP Administrator - Private Cloud Base Exam CDP-2001 and trainings.
- Get All Questions & Answer for CDP Data Developer Exam CDP-3001 and trainings.
This Question is from QuickTechie Cloudera CDP Certification Preparation Kit.
---------------------------------------
Issue 2: No ~/.ipython/profile_pyspark found after executing command ipython profile create pyspark
Resolution:
IPython was updated to 4.0.0 which uses jupyter
-
Run jupyter notebook --generate-config
-
Then nano /root/.jupyter/jupyter_notebook_config.py
-------------------------------------------
Issue 3: - profile Error when executing "~/start_ipython_notebook.sh"
Resolution:
Use
IPYTHON_OPTS="notebook" pyspark
instead of
IPYTHON_OPTS="notebook –profile pyspark" pyspark
This help me a lot thank you ! I just needed to add --allow-root.
- Get All Questions & Answer for CDP Generalist Exam (CDP-0011) and trainings.
- Get All Questions & Answer for CDP Administrator - Private Cloud Base Exam CDP-2001 and trainings.
- Get All Questions & Answer for CDP Data Developer Exam CDP-3001 and trainings.
This Question is from QuickTechie Cloudera CDP Certification Preparation Kit.