Python-binance: No way to install python-binance on Anaconda to work with Spyder ! Any idea ?

Created on 3 May 2020  Â·  4Comments  Â·  Source: sammchardy/python-binance

pip doesn't work with spyder IDE and conda install doesn't know python-binance package.

Is there any solution to install python-binance with conda in order to work with this package in Spyder IDE, which is the best for any scientific python program ?

Thanks for your help.

Most helpful comment

you can install twisted from conda “conda install twisted”, then you can run the pip command
pip install python-binance

All 4 comments

you can download this repo and put it into your project. then import it.... what you lose are updates with a packages manager. nothing more.

You can install pip with conda and then install python-binance with the pip-package from your environment.

Example:

conda create -n binance_env
# or your environment name
source activate binance_env
# you need to insert your anaconda path. You the path with `whereis anaconda`
/YOUR_ANACONDA_PATH/envs/binance_env/bin/pip install python-binance

you can install twisted from conda “conda install twisted”, then you can run the pip command
pip install python-binance

Installing twisted from conda “conda install twisted”, then running the pip command
pip install python-binance worked for me !

Thanks a lot !

Was this page helpful?
0 / 5 - 0 ratings