Python common library recommendations

  • 2020-05-17 05:47:43
  • OfStack

IPython + ptpython, perfect experience

The first is installation

pip install ipython ptpython

Then use the

ptipython

What good is it

1. IPython is a very powerful Python enhancement tool
2. ptpython provides an automatic completion function similar to IDE
3. When you type pyipython at the command line, you combine the two.

virtualenv + virtualenvwrapper, easy to create an isolated environment

First installation

pip install virtualenvwrapper  (virtualenv will be installed automatically)

What good is it

1. Easily create an isolated environment
2. It's easy to share the environment you need for one of your projects

glances, which monitors Linux's handy gadgets

The installation

pip install glances

use

Enter glances from the command line

autojump, Linux under quick jump directory

Surprise, it's written by Python.

The installation

apt-get install autojump (on other systems, you may need to compile and install it yourself, which is not too difficult. See the official GitHub repository.)

use

Enter j $yourDir from the command line


Related articles: