Troubleshoot issues that you may experience when you install a Python library with Pip

Source: Internet
Author: User

The author's computer system is Win7, and Python2.7 and Python3.6 are installed, but the following error message appears when installing the Python library using pip install XXX directly from the command line:

Fatal error in launcher:unable to create process using ' "'

Workaround:

1. Find the name of the interpreter that corresponds to your Python version

First you need to go to the folder where the corresponding version of Python is installed. Take my Python version for example, this is the interpreter name for my Python2.7 version:

This is the name of the interpreter that corresponds to my Python3.6 version:

2, use "Interpreter name-m pip install XXX" to install the corresponding library

Also take my Python version for example,

If I want to install Python2.7 's Sklearn library, I need to enter the command "python2-m pip install Sklearn"

If I want to install Python3.6 's Sklearn library, I need to enter the command "python-m pip install Sklearn"

Troubleshoot issues that you may experience when you install a Python library with Pip

Related Article

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.