Author |
Message
|
bobbee |
Posted: Wed Jun 15, 2022 7:10 am Post subject: AIX installing pymqi |
|
|
 Knight
Joined: 20 Sep 2001 Posts: 545 Location: Tampa
|
Either on the 'pip3 install' or setup.py we are getting a failure on a not found for xlc-r compiler. We searched. No compilers seem to be installed on this server.
Do we install AIXTOOLS or is there a process to install xlc_r.
I am not that AIX knowledgeable. |
|
Back to top |
|
 |
gbaddeley |
Posted: Wed Jun 15, 2022 3:18 pm Post subject: |
|
|
 Jedi Knight
Joined: 25 Mar 2003 Posts: 2538 Location: Melbourne, Australia
|
Why would it need the IBM XLC C/C++ compiler? This is a licensed product that is not included in a base AIX system. _________________ Glenn |
|
Back to top |
|
 |
hughson |
Posted: Wed Jun 15, 2022 9:35 pm Post subject: |
|
|
 Padawan
Joined: 09 May 2013 Posts: 1959 Location: Bay of Plenty, New Zealand
|
|
Back to top |
|
 |
markt |
Posted: Wed Jun 15, 2022 10:01 pm Post subject: |
|
|
 Knight
Joined: 14 May 2002 Posts: 508
|
xlc is a licensed product. But it looks like the pip install will work with gcc instead if that's installed. Getting that onto an AIX box is as easy as other platforms, provided you've got "yum" already installed. (It can be done without yum, but a lot of tools assume certain paths have been used.) |
|
Back to top |
|
 |
bobbee |
Posted: Thu Jun 16, 2022 7:23 am Post subject: |
|
|
 Knight
Joined: 20 Sep 2001 Posts: 545 Location: Tampa
|
so doing a 'pip3 install pymqi' throws that error.
WE tried several variations of build and install and got that compiler missing.
So we did not specify it. The PIP3 install did.
WE are installing a 30 day tril lic of the compiler so we can get the pymqi package installed. |
|
Back to top |
|
 |
RogerLacroix |
Posted: Thu Jun 16, 2022 9:24 am Post subject: |
|
|
 Jedi Knight
Joined: 15 May 2001 Posts: 3264 Location: London, ON Canada
|
Hi Bobbee,
After you install XLC, don't for get to update your PATH environment variable in your ".profile" then logoff and logon again to pick up the changes.
i.e.
Code: |
PATH=/opt/IBM/xlC/16.1.0/bin:/usr/mqm/bin:/usr/bin:/etc:/usr/sbin:/usr/ucb:$HOME/bin:/usr/bin/X11:/sbin:.
export PATH |
Then you can run 'pip3 install pymqi' command.
Regards,
Roger Lacroix
Capitalware Inc. _________________ Capitalware: Transforming tomorrow into today.
Connected to MQ!
Twitter |
|
Back to top |
|
 |
bobbee |
Posted: Thu Jun 16, 2022 10:19 am Post subject: |
|
|
 Knight
Joined: 20 Sep 2001 Posts: 545 Location: Tampa
|
|
Back to top |
|
 |
|