在solaris 11 sparc上安装cx_oracle

时间:2016-10-10 21:01:57

标签: python python-2.7 solaris cx-oracle

大多数cx_Oracle 5.2.1版本构建适用于Windows和Linux。如何安装/获取Solaris 11 Sparc的安装?

我尝试使用以下命令安装:sourceforge.net中的cx_Oracle-5.2.1.tar.gz 但导致以下错误:

(function(){
    'use strict';
    /* global angular */// ESLINT
    angular.module('common').directive('tdResult',Directive);

    Directive.$inject = ['$compile'];

    function Directive($compile){
        return {
            restrict : 'E',
            scope : {
                result : '@',     
                ctrlName : '@'  
            },
            template: '<td>{{result.prop1}}</td>\
                        <td>{{result.prop2}}</td>\
                        <td>{{result.prop3}}</td>\
                        <td><div ng-click="ctrlName.doSomething()">Something Goes Here {{ctrlName}}</div></td>'
        };
    }
 })();

请告知。

2 个答案:

答案 0 :(得分:2)

Oracle(在此情况下,Sun也不是)在Solaris OS安装映像中未包含编译器。您可以下载Solaris Studio编译器,当然也可以走GCC路线(UNIX软件包网站提供了可安装的GCC软件包和依赖关系所需的各种库),费用不高。

原始帖子的报价仍然很旧,到目前为止,解决方案是仅从11.3或11.4 IPS安装cx_oracle软件包。

答案 1 :(得分:0)

我不知道你得到错误的确切原因。但是,它看起来像没有安装“cc”编译器。您应该能够找到该软件包并进行安装。或者您需要调整配置以使用gcc。此链接可能有所帮助:

http://www.unix.com/solaris/114262-command-cc-failed-even-though-gcc-installed.html