简体   繁体   中英

How do I install babel.messages module in Ubuntu?

I am trying to install using

sudo apt-get install babel.messages 

but getting error:

ImportError: No module named babel.messages

Please let me know how to install in Ubuntu 16.04

Try that with using this command:

# pip install babel

It will work well

For Ubuntu versions older than 17.04, you can install python-babel from the Ubuntu repositories by running the following command in terminal:

sudo apt-get install python-babel

For Ubuntu versions from 17.04 and also on older versions you can install it via pip , the Python package manager as:

pip install babel

If you don't have pip installed yet, you can install it as:

sudo apt install python-pip

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM