久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

  • <legend id='6cJsB'><style id='6cJsB'><dir id='6cJsB'><q id='6cJsB'></q></dir></style></legend>
      <bdo id='6cJsB'></bdo><ul id='6cJsB'></ul>

    <i id='6cJsB'><tr id='6cJsB'><dt id='6cJsB'><q id='6cJsB'><span id='6cJsB'><b id='6cJsB'><form id='6cJsB'><ins id='6cJsB'></ins><ul id='6cJsB'></ul><sub id='6cJsB'></sub></form><legend id='6cJsB'></legend><bdo id='6cJsB'><pre id='6cJsB'><center id='6cJsB'></center></pre></bdo></b><th id='6cJsB'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='6cJsB'><tfoot id='6cJsB'></tfoot><dl id='6cJsB'><fieldset id='6cJsB'></fieldset></dl></div>
    <tfoot id='6cJsB'></tfoot>

        <small id='6cJsB'></small><noframes id='6cJsB'>

      1. gcc 找不到 cc1plus

        gcc cannot find cc1plus(gcc 找不到 cc1plus)
        • <bdo id='te7cL'></bdo><ul id='te7cL'></ul>
          <legend id='te7cL'><style id='te7cL'><dir id='te7cL'><q id='te7cL'></q></dir></style></legend>

              <small id='te7cL'></small><noframes id='te7cL'>

              <i id='te7cL'><tr id='te7cL'><dt id='te7cL'><q id='te7cL'><span id='te7cL'><b id='te7cL'><form id='te7cL'><ins id='te7cL'></ins><ul id='te7cL'></ul><sub id='te7cL'></sub></form><legend id='te7cL'></legend><bdo id='te7cL'><pre id='te7cL'><center id='te7cL'></center></pre></bdo></b><th id='te7cL'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='te7cL'><tfoot id='te7cL'></tfoot><dl id='te7cL'><fieldset id='te7cL'></fieldset></dl></div>
                  <tbody id='te7cL'></tbody>
                1. <tfoot id='te7cL'></tfoot>

                2. 本文介紹了gcc 找不到 cc1plus的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  我正在嘗試在 CentOS 6 上安裝 python 包 pandas,但我遇到了 gcc 編譯器問題:

                  I'm trying to install the python package pandas on CentOS 6 but I'm having problems with the gcc compiler:

                  sudo pip install pandas
                  ...    
                  creating build/temp.linux-x86_64-2.7/pandas/msgpack
                  
                  gcc -pthread -fno-strict-aliasing -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -D__LITTLE_ENDIAN__=1 -Ipandas/src/msgpack -Ipandas/src/klib -Ipandas/src -I/opt/rh/python27/root/usr/lib64/python2.7/site-packages/numpy/core/include -I/opt/rh/python27/root/usr/include/python2.7 -c pandas/msgpack/_packer.cpp -o build/temp.linux-x86_64-2.7/pandas/msgpack/_packer.o -Wno-unused-function
                  
                  gcc: error trying to exec 'cc1plus': execvp: No such file or directory
                  
                  error: command 'gcc' failed with exit status 1
                  
                  ----------------------------------------
                  Cleaning up...
                  ...
                  

                  所以看來我需要 cc1plus,通過閱讀需要 gcc-g++.但是我已經有了 gcc-c++:

                  So it appears I need cc1plus, which by reading around requires gcc-g++. But I already have gcc-c++:

                  sudo yum install gcc-c++
                  ...
                  Package gcc-c++-4.4.7-16.el6.x86_64 already installed and latest version
                  Nothing to do
                  

                  關于gcc和cc1plus:

                  About gcc and cc1plus:

                  gcc --version
                  gcc (GCC) 4.8.2 20140120 (Red Hat 4.8.2-15)
                  
                  which gcc
                  /opt/rh/devtoolset-2/root/usr/bin/gcc
                  
                  locate cc1plus
                  /usr/libexec/gcc/x86_64-redhat-linux/4.4.4/cc1plus
                  

                  下面是我自己的解決方案.有沒有人有更好的方法來解決這個問題?

                  推薦答案

                  解決我自己的問題:似乎 cc1plus 雖然存在,但對 gcc 不可見,因為它不在路徑上.所以一個解決方案是將 cc1plus 鏈接到 PATH 上的目錄:

                  Solution to my own question: It seems that cc1plus, although present, is not visible to gcc as it is not on path. So a solution is to link cc1plus to a directory on PATH:

                  sudo ln -s /usr/libexec/gcc/x86_64-redhat-linux/4.4.4/cc1plus /usr/local/bin/
                  

                  現在 sudo pip install pandas 成功了.

                  (但是為什么包管理器首先把 cc1plus 放在那里?)

                  (But why the package manager put cc1plus there in the first place?)

                  這篇關于gcc 找不到 cc1plus的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

                  【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                  相關文檔推薦

                  python: Two modules and classes with the same name under different packages(python:不同包下同名的兩個模塊和類)
                  Configuring Python to use additional locations for site-packages(配置 Python 以使用站點包的其他位置)
                  How to structure python packages without repeating top level name for import(如何在不重復導入頂級名稱的情況下構造python包)
                  Install python packages on OpenShift(在 OpenShift 上安裝 python 包)
                  How to refresh sys.path?(如何刷新 sys.path?)
                  Distribute a Python package with a compiled dynamic shared library(分發帶有已編譯動態共享庫的 Python 包)
                      <tbody id='40vvu'></tbody>

                          • <bdo id='40vvu'></bdo><ul id='40vvu'></ul>
                            <i id='40vvu'><tr id='40vvu'><dt id='40vvu'><q id='40vvu'><span id='40vvu'><b id='40vvu'><form id='40vvu'><ins id='40vvu'></ins><ul id='40vvu'></ul><sub id='40vvu'></sub></form><legend id='40vvu'></legend><bdo id='40vvu'><pre id='40vvu'><center id='40vvu'></center></pre></bdo></b><th id='40vvu'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='40vvu'><tfoot id='40vvu'></tfoot><dl id='40vvu'><fieldset id='40vvu'></fieldset></dl></div>
                            <tfoot id='40vvu'></tfoot>

                            <small id='40vvu'></small><noframes id='40vvu'>

                            <legend id='40vvu'><style id='40vvu'><dir id='40vvu'><q id='40vvu'></q></dir></style></legend>
                          • 主站蜘蛛池模板: 美女一区 | 亚洲精品白浆高清久久久久久 | 美女国产精品 | 日韩中文字幕av | 综合色播| 皇色视频在线 | 国产a级黄色录像 | 欧美日韩国产综合在线 | 精品久久国产视频 | 午夜不卡福利视频 | 成人性视频免费网站 | 欧美日韩一区二区三区不卡视频 | 欧美综合一区 | dy天堂| 国产精品视频免费观看 | 成人在线视频免费观看 | 久久久视频在线 | 色视频在线播放 | 精品一区二区三区四区外站 | 亚洲综合在 | 伊人狠狠干 | 欧美成年人 | 欧美国产激情二区三区 | 精品亚洲一区二区三区四区五区 | 精品一二三 | 日本亚洲精品 | 国产成人网 | 亚洲国产精品一区二区第一页 | 国产精品视频久久 | 亚洲国产aⅴ成人精品无吗 国产精品永久在线观看 | 国产精品91久久久久久 | 中国一级特黄真人毛片免费观看 | 999久久久久久久久6666 | 国产亚洲精品久久yy50 | 成人在线视频看看 | h在线免费观看 | 91视频大全 | 日韩精品在线免费 | 欧美视频免费在线观看 | 夜夜夜久久久 | 久久夜夜|