Skip to content

Commit

Permalink
Tiny fix for Google Colab.
Browse files Browse the repository at this point in the history
  • Loading branch information
Hvass-Labs committed Aug 26, 2019
1 parent 3d18281 commit 11fb1eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,13 +90,13 @@ your Google account.
Then you need to execute the following commands at the top of the Notebook,
which clones FinanceOps to your work-directory on Colab.

# Clone the repository from GitHub to Google Colab's temporary drive.
import os
work_dir = "/content/FinanceOps/"
if os.getcwd() != work_dir:
if not os.path.exists(work_dir):
!git clone https://github.com/Hvass-Labs/FinanceOps.git
os.chdir(work_dir)


## Data Sources

- Price data from [Yahoo Finance](https://finance.yahoo.com/quote/%5EGSPC/history?p=%5EGSPC).
Expand Down

0 comments on commit 11fb1eb

Please sign in to comment.