How to install and configure JupyterHub: Difference between revisions

From DISI
Jump to navigation Jump to search
(Created page with "This tutorial shows how to install and configure JupyterHub on Centos 7. '''Install Python3.6 (if needed)''' <pre> sudo yum update sudo yum install yum-utils sudo yum groupin...")
 
No edit summary
Line 9: Line 9:
sudo yum install python36u
sudo yum install python36u
python3.6 -V
python3.6 -V
</pre>
'''Install pip (if needed)'''
<pre>
sudo yum install python-pip
wget "https://bootstrap.pypa.io/get-pip.py" -o "get-pip.py"
python3.6 get-pip.py
</pre>
</pre>

Revision as of 23:20, 16 July 2018

This tutorial shows how to install and configure JupyterHub on Centos 7.

Install Python3.6 (if needed)

sudo yum update
sudo yum install yum-utils
sudo yum groupinstall development
sudo yum install https://centos7.iuscommunity.org/ius-release.rpm
sudo yum install python36u
python3.6 -V

Install pip (if needed)

sudo yum install python-pip
wget "https://bootstrap.pypa.io/get-pip.py" -o "get-pip.py"
python3.6 get-pip.py