Skip to content
Andrei Radulescu-Banu edited this page Jan 15, 2018 · 4 revisions

Steps to install on Windows

  • Install Python3, ensure python executable is in the PATH

  • Install all necessary packages:

    pip install requests BeautifulSoup pandas tabulate argparse unidecode

  • Pull the tickerscrape repository from Github

  • Set the parent folder of tickerscrape in your PYTHONPATH environment variable

  • Change directory to tickerscrape (or use relative paths during execution)

  • Execute the unit tests:

    python morningstar.py -h

    python morningstar.py SPY

Steps to install on Centos 7 Linux

  • Install all necessary packages

    sudo yum install -y python-requests python-beautifulsoup python-pandas python-tabulate python-argparse python-unidecode

  • Pull the tickerscrape repository from Github

  • Set the parent folder of tickerscrape in your PYTHONPATH environment variable

  • Change directory to tickerscrape (or use relative paths during execution)

  • Execute the unit tests:

    ./morningstar.py -h

    ./morningstar.py SPY

Clone this wiki locally