Code for the The Python and Cryptocurrencies webinar
-
Download the Python data science packages via Anaconda
-
Create a virtual environment for your projects
conda create --name cryptocurrency-analysis python=3
-
Start you virtual environment
source activate cryptocurrency-analysis
-
Install of your dependencies
conda install numpy pandas nb_conda jupyter plotly quandl
-
Start the notebook by running
jupyter notebook
in the command line
Much of the code was inpired by this blogpost https://blog.patricktriest.com/analyzing-cryptocurrencies-python/