Under spyder, python package installation and viewing tool

The advantage of python is that there are many packages that can be used, and managing these packages is a very important operation.

I used pycharm to search for a module in the interpreter to install it. Now I switch to anaconda. The method for spyder to install the module is in the prompt shell:

pip install module name

Then you can import the corresponding module in spyder.

Check how many packages python has installed, just

pip list

Find if a certain package is installed, just

pip list | grep package name

Guess you like

Origin blog.csdn.net/sinat_39416814/article/details/105713071