TradingAgents/.agent/workflows/install_conda.md

796 B

description
How to install Miniconda in WSL2
  1. Download the Miniconda installer script:
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
  1. Run the installer script:
bash Miniconda3-latest-Linux-x86_64.sh
  • Press Enter to review the license.
  • Type yes to accept the license terms.
  • Press Enter to confirm the installation location.
  • Type yes when asked to initialize Miniconda3.
  1. Activate the changes (or restart your terminal):
source ~/.bashrc
  1. Verify installation:
conda --version
  1. (Optional) Create your environment:
conda create -n tradingagents python=3.10
conda activate tradingagents
pip install -r requirements.txt