16 The whole process of python's anaconda installation of third-party libraries

16 The whole process of python's anaconda installation of third-party libraries

1. Install third-party libraries under anaconda

The installation method in Baidu, you can install some libraries in the anaconda environment.
First, we are here to find out if there is a library we want to install, and if so, we can install Baidu's method operation

If not, please refer to this method
to use the anaconda promot method directly on the CSDN blog. This method is more applicable
. The author recommends the second method. At this time, the interface is as follows
. Enter in anaconda prompt

conda install -c conda-forge wordcloud

The last word is the name of the library you want to install

Insert picture description here
Here need to wait a while, the installation package is being downloaded

2. Check whether the installation is successful

After the download is complete, we directly open Spyder to import the installation package and the following situation will appear

import wordcloud

Check whether the installation is successful

Guess you like

Origin blog.csdn.net/bj_zhb/article/details/105123789