Install third-party libraries for different python versions in Linux.

Source: Internet
Author: User

Install third-party libraries for different python versions in Linux.

Problem background

Currently, many python versions are installed on linux distributions.

The default version on my machine is python 2.x. When easy_install is used to install third-party libraries, it is also installed in version 2.x by default. In version 3.x, the installed libraries cannot be imported.

Environment: Kubuntu 15.04

Solution

Install the python3-setuptools and easy_install3, and install pip3

Sudo apt-get install python3-setuptools
Sudo easy_install3 pip
Sudo pip3 install pyserial (replace pyserial with the required third-party Library)

Test import again in python3.x environment.

The method is not very simple. This was done only after a long time on the Internet at the prompt of a foreign user. I hope everyone will like it.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.