- Subscribe to RSS Feed
- Mark as New
- Mark as Read
- Bookmark
- Subscribe
- Printer Friendly Page
- Report Inappropriate Content
Created on 01-05-2016 08:21 PM
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]"
---------------------------------------
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
Created on 03-02-2016 08:06 PM
- Mark as Read
- Mark as New
- Bookmark
- Permalink
- Report Inappropriate Content
These issues have been resolved and information updated in the latest IPython with Spark Tutorial
Created on 05-13-2017 05:08 PM
- Mark as Read
- Mark as New
- Bookmark
- Permalink
- Report Inappropriate Content
This help me a lot thank you ! I just needed to add --allow-root.