796 B
796 B
| description |
|---|
| How to install Miniconda in WSL2 |
- Download the Miniconda installer script:
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
- 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.
- Activate the changes (or restart your terminal):
source ~/.bashrc
- Verify installation:
conda --version
- (Optional) Create your environment:
conda create -n tradingagents python=3.10
conda activate tradingagents
pip install -r requirements.txt