Skip to content
Alessandro Gubitosi edited this page Oct 26, 2018 · 10 revisions

Installation

The following guide is for a Linux/Debian environment and will install python 3 version.

Update the system
$ sudo apt-get update

Install Python

$ sudo apt-get -y install python3 python3-dev python3-pip

Check Python version

$ python3 --version
# Python 3.6.6

Install IPython

$ sudo apt-get -y install ipython3 ipython-notebook

And check PIP version

$ pip3 --version
# pip 9.0.1 from /usr/lib/python3/dist-packages (python 3.6)

Install Jupyter
$ sudo pip3 install jupyter

Install FuzzySet
$ sudo pip3 install fuzzyset

Clone this repository and go to the notebook dir.

$ git clone [email protected]:bioversity/dataverse-dashboard-curation.git
$ cd notebook

Now you can launch Jupyter Notebook:
$ jupyter notebook

If everything goes well, you'll see an output like this: image

Open http://localhost:8888 and you are able to work with the notebook

Clone this wiki locally