nourou
nourou

Reputation: 81

How to install SASL with Python 3.8?

I am trying to install sasl3-0.2.11 python package on a windows 10 machine (64 bit). It is failing with a C1083 fatal error.

Due to some proxies and me not being able to avoid them, I am installing it by downloading the tar.gz from pypi, logging into the uncompressed folder and doing python setup.py install.

This solution worked for all modules but sasl.

I have then read this useful comment but the .whl from Cyrus Sasl did not work too. They suppot until 3.7 python, not 3.8.

I am really wondering how can I bypass this issue or could I avoid sasl for being able to use Pyhive.

Thanks in advance.

Nourou

Upvotes: 6

Views: 8607

Answers (2)

Alireza Ghadimi
Alireza Ghadimi

Reputation: 67

You just need to install the following packages on Ubuntu:

apt-get install libsasl2-dev libsasl2-2 libsasl2-modules-gssapi-mit

Upvotes: 3

nourou
nourou

Reputation: 81

Finally, I just uninstalled Python 3.8 and install the 3.7. Then, I was able to install Sasl via the wheel file here

Upvotes: 2

Related Questions