Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to deal with Chinese garbled code in matplotlib under ubuntu system

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/01 Report--

This article will explain in detail how to do Chinese garbled code in matplotlib under the ubuntu system. The editor thinks it is very practical, so I share it for you as a reference. I hope you can get something after reading this article.

When drawing with matplotlib under ubuntu, Chinese can not be displayed on the image. Here is my solution:

1. Download Chinese font simhei.ttf at http://fontzone.net/download/simhei

two。 Search the location where matplotlib fonts are installed

$locate-b'\ mpl-data'

You will get the fonts/ttf directory under the path / usr/share/matplotlib/mpl-data, enter this directory, copy the simhei.ttf font you just downloaded to this directory, and pay attention to whether the permissions and attribution are the same as other fonts. Mine belongs to the root user, so use the root user to copy it over.

3. Delete the buffer file of the current user matplotlib (if you do not proceed directly to step 4)

$cd ~ / .cache/matplotlib$rm-rf *.

4. Adjust the font in the code

#! / usr/bin/env python#coding:utf-8 "" a demo of matplotlib "" import matplotlib as mplfrom matplotlib import pyplot as pltmpl.rcParams [u 'font.sans-serif'] = ['simhei'] mpl.rcParams [' axes.unicode_minus'] = Falseyears = [1950, 1960, 1970, 1980, 1990, 2000, 2010] gdp = [300.2, 543.3, 1075.9, 2862.5, 5979.6, 10289.7, 14958.3] # create a pair of diagrams with the x axis being the year The y-axis is gdpplt.plot (years, gdp, color='green', marker='o', linestyle='solid') # add a title plt.title (u 'nominal GDP') # mark the y-axis plt.ylabel (u' billion dollars') plt.show ()

Where # coding:utf-8 description file encoding format

Mpl.rcParams [u 'font.sans-serif'] = [' simhei'] displays Chinese in simhei font

Mpl.rcParams ['axes.unicode_minus'] = False this is used to display negative signs normally.

Plt.title (u 'nominal GDP') the u here had better not be less.

This is the end of this article on "what to do about Chinese garbled codes in matplotlib under the ubuntu system". I hope the above content can be of some help to you, so that you can learn more knowledge. if you think the article is good, please share it for more people to see.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report