-1

Kindly refer to this issue for details:

https://github.com/aerospike/aerospike-client-python/issues/220

Thanks in advance!

user3868051
  • 1,147
  • 2
  • 22
  • 43

2 Answers2

1

Probably you should install python3.6 development package, for an example for ubuntu/debian:

sudo apt install python3.6-dev

Estatic
  • 138
  • 1
  • 8
0

To install the correct version of python do: sudo apt-get install python3.6-dev then: sudo apt-get install libssl-dev To install pip3: sudo apt-get install python3-pip Then do sudo -H pip3 install aerospike to install aerospike

Now you should be able to run aerospike with python3!

user3868051
  • 1,147
  • 2
  • 22
  • 43