Problems installing talib and preparing environment for developing binance APIs on jupyter lab — fixed

# if you have a virtual env you need remove it
conda env remove -n “virtual_env_name”

# create a new virtual env
conda create -n conda_env

# activate the virtual env
conda activate conda_env

# Then
conda install notebook ipykernel

ipython kernel install — user

conda install -c conda-forge matplotlib

conda install -c conda-forge ta-lib
conda install pip
conda install twisted
pip install python-binance
pip3 install binance-api

# Downgrade to use websockets
pip install python-binance==0.7.3

--

--