Problems installing talib and preparing environment for developing binance APIs in VScode with conda — fixed

# Initialize the virtual environment with conda in VScode

# Start command in shell (terminal)

conda init

# Start the virtual environment

conda create -n “conda_env”

#Activate the virtual environment

conda activate conda_env

# Install dependencies

conda install -c conda-forge seaborn matplotlib statsmodels scipy scikit-learn pandas numpy

# Instalar talib

pip install ta-lib

# Install dependencies in C and update if necessary

https://visualstudio.microsoft.com/pt-br/thank-you-downloading-visual-studio/?sku=BuildTools&rel=16

conda install -c conda-forge matplotlib

#install TA_Lib-0.4.20-cp39-cp39-win_amd64.whl

python -m pip install TA_Lib-0.4.20-cp39-cp39-win_amd64.whl

# activate the interpreter with ctrl+shift+p and choose conda with python and then install seaborn with pip install

--

--