How can I use conda to install pydotplus
- Using
conda install
command below worked for me (globally installed):
conda install -c conda-forge pydotplus
- Using Anaconda environments (per environment instance) you can install
pydotplus
usingpip
:
pip install pydotplus
I would personally recommend using the Anaconda environments to install your packages for a given solution as its a more modular and cleaner way of building solutions with Anaconda.
Installing via Anaconda environments referenced from answer on Quora
, see:
https://www.quora.com/How-do-I-install-Python-packages-in-Anaconda
I tried conda install pydotplus
, but it failed.
Then tried python -m pip install pydotplus
and it worked.