Checking how to install the Python SDK on an Oracle Linux 8 machine
This is what I did that seemed to work
sudo dnf install python39-pip
python3.9 -m pip install openziti
However, something went wrong as I get errors running the following commands
python3 ziti-echo-server.py "$HOME/public.dns.client.json" golanghttp
Traceback (most recent call last):
File "ziti-echo-server.py", line 39, in
run(sys.argv[1], sys.argv[2])
File "ziti-echo-server.py", line 20, in run
ztx = openziti.load(ziti_id)
AttributeError: module 'openziti' has no attribute 'load'
python3 ziti-http-server.py "$HOME/public.dns.client.json" golanghttp
Traceback (most recent call last):
File "ziti-http-server.py", line 27, in
openziti.monkeypatch(bindings={(hostName, serverPort): cfg})
AttributeError: module 'openziti' has no attribute 'monkeypatch'
PS.. these commands dont generate the errors when I run them locally on a MacOS.. so something has happened with the install.. / config.
let me know if you have any tips