How to install Google Cloud SDK on AIX machine - unix

I am trying in install complete Google Cloud SDK on IBM AIX 7.1.0 machine, however not able to find steps to install steps for setting up Google Cloud SDK on AIX. Due to this not able to run any gcloud/bq command. Only available instruction is to setup gsutil on AIX
https://cloud.google.com/sdk/docs/downloads-interactive#linux

If you are seeking a prepared package for installation on AIX, I am not aware of one.
AIX does support Python. You can install Python from the AIX toolbox repository.
Then download the Google Cloud SDK CLI source. You can then run the SDK CLI on your system. gcloud is a Python program.
The only issue is the package dependencies. I am not sure that all dependencies for all commands are available for AIX. You should not have a problem with the core features.

Related

Can I make my Qt project downloadable through package tool

I'm wondering if there is a way to make my Qt application be downloadable through for example APT and can be executed?
As an example, I downloaded "pinta" using following command sudo apt install pinta
and then i could just write pinta in terminal, and it would open the program.
Is it possible to do it Qt projects?

How to install the new "Boost" dependency using the "AzerothCore Bash Dashboard" installation?

I have an AzerothCore Bash Dashboard installed version.
What should I do to install "Boost" as it seems to be required (from the announcement message on Discord dated May 24th 2021) going forward?
Does a simple
sudo apt-get install boost
work? Or since I installed with the bash dashboard issuing a
git pull
followed by a
./acore.sh compiler build
Will take care of installing any missing dependencies?
Or should I run, instead, another time:
./acore.sh install-deps
Thank you
the following worked for me on Ubuntu 20.04 on an AC bash dashboard setup:
sudo apt install libboost-all-dev
and I successfully managed to update my AC version to latest.
Tested both core compile and run.

Qt-default version issue on migration from RPi4 to NVIDIA Jetson Nano

Having an issue on migrating a Qt project from RPi4 to NVIDIA Jetson Nano. We wanted to migrate our project to Jetson Nano to improve image processing performance.
The qt dependency of our project is >= 5.11. But Jetson Nano uses Ubuntu 18.04.4 and it has qt5-default package pre-installed in it (in my understanding some system files use it). And this qt5-default packages version is 5.9.5.
I tried to downgrade my qt dependency, but every change made lead to harder to fix issue.
I tried to upgrade default qt5 version but couldn't find any similar guidance. The guides/questions already exists are about x86 etc. environment. Couldn't find any ARM based solution. The qt downloads doesn't give any buildable for ARM env (or I can't find them). The official documents only talks about cross-compiling.
What should I do to overcome this issue? Thanks in advance.
Okay I finally was able to successfully compile QT 5.12.9 on the Nano itself (no cross compilation).
The steps I did:
git clone https://code.qt.io/qt/qt5.git
cd qt5
git checkout 5.12.9
Then
git submodule update --init --recursive
cd ~
mkdir qt5-build
cd qt5-build
Configure and build
../qt5/configure -nomake examples -nomake tests -skip qtwebengine
make
sudo make install
Make took like nearly a whole day to compile all sources. Also I had some compilation errors before. However after skipping webengine and not building the tests and examples in ./configure I was finally able to sucessfully make it.

Unable to install sbt 0.13.16 using SDK Manager

I'm trying to install sbt 0.13.16 using SDK Manager.
$ sdk install sbt 0.13.16
Stop! sbt 0.13.16 is not available. Possible causes:
* 0.13.16 is an invalid version
* sbt binaries are incompatible with Darwin
Below is the SDK details -
$ sdk version
SDKMAN 5.5.13+272
Any reason, why I'm not able to install sbt 0.13.16 using sdk manager.
You are not able to install this version because it is not available.
To find out all the SBT candidate versions available for installation run the command:
sdk list sbt

How to install erpnext on Windows

I have installed ERPNext on Ubuntu, now I have a specific requirement where I want to install it on Windows OS.
I have download the following Pre requisites.
1. Python 2.7
2. MariaDB
What is the correct procedure to install erpnext on windows. ?
ERPNext isn't compatible with Windows.
How ever you can install it in Windows using Virtual Machine
So
VM:
Install a Virtual Machine on Microsoft Windows
By following these instruction
After that follow these steps
Installation Steps:
Install WAMPserver from here
Install Python from here
Install Setup tools from here
Configure httpd.conf
Replace shebang lines to your python directory.
Run install.py
Good Luck
ERPNext isn't compatible with windows yet, as it uses some unix utilities.
You can do it using windows subsystem for linux and carry the steps of installing on linux in commandline of linux.

Resources