Colab installation documentation
Addition to the documentation so that users can run in Colab - issue raised here: https://github.com/TauricResearch/TradingAgents/issues/161
This commit is contained in:
parent
a438acdbbd
commit
55074ede8d
|
|
@ -112,6 +112,14 @@ Install dependencies:
|
||||||
pip install -r requirements.txt
|
pip install -r requirements.txt
|
||||||
```
|
```
|
||||||
|
|
||||||
|
#### Google Colab / Jupyter Installation ####
|
||||||
|
```python
|
||||||
|
! git clone https://github.com/TauricResearch/TradingAgents.git
|
||||||
|
import os
|
||||||
|
os.chdir("TradingAgents")
|
||||||
|
! pip install -r requirements.txt
|
||||||
|
```
|
||||||
|
|
||||||
### Required APIs
|
### Required APIs
|
||||||
|
|
||||||
You will also need the FinnHub API for financial data. All of our code is implemented with the free tier.
|
You will also need the FinnHub API for financial data. All of our code is implemented with the free tier.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue