1. 程式人生 > >【Python錯誤】windows下使用pip/easy_install提示Fatal error in launcher: Unable to create process using...

【Python錯誤】windows下使用pip/easy_install提示Fatal error in launcher: Unable to create process using...

windows下的python安裝完成後,會在python的安裝目錄scripts下生成幾個exe檔案,其中包括easy_install和pip,

我們將上述路徑新增到系統的環境變數後,在正常情況

下是可以使用,easy_install等工具的,但是在64位的系統中會出現類似下面的錯誤:

C:\Python27\Scripts>easy_install sqlalchemy
Fatal error in launcher: Unable to create process using '"D:\Python27\python.exe
" "C:\Python27\Scripts\easy_install.exe" sqlalchemy
主要原因是在使用easy_install等工具時,工具中的預設的python安裝路徑和系統中的不一致,此時需要我們顯式地呼叫python進行安裝即可:

python -m easy_install sqlalchemy
--------------------- 
作者:HymanLiuTS 
來源:CSDN 
原文:https://blog.csdn.net/hyman_c/article/details/52755628 
版權宣告:本文為博主原創文章,轉載請附上博文連結!