--
You received this message because you are subscribed to the Google Groups "DataStax Python Driver for Apache Cassandra User Mailing List" group.
To unsubscribe from this group and stop receiving emails from it, send an email to python-driver-user+unsub...@lists.datastax.com.
Alex,You are likely missing some native library needed for the C extensions to build correctly.
For more information about those depedencies take a look here, http://datastax.github.io/python-driver/installation.html#cython-based-extensionsThe quick and dirty fix is to use --no-cython when installing, this will bypass the cythonizing of the files, but will yield less overall performance.~Thanks
Greg Bestland.
On Tue, Oct 17, 2017 at 9:03 AM, 'buburuza smintita' via DataStax Python Driver for Apache Cassandra User Mailing List <python-driver-user@lists.datastax.com> wrote:
Hello,
i tried installing the current cassandra-driver on a windows 10 plattform using a Anaconda distribution with python 3.6. I tired the commands
- pip install cassandra-driver and
- pip install cassandra-driver --install-option="--no-cython".
With both Installation I recieve following error code:
[9/9] Cythonizing cassandra\row_parser.pyx
error: [WinError 2] Das System kann die angegebene Datei nicht finden
(German for: the system is unable to find the given file)
I also tried downloading the sources from github and installing those. But I recieve the same error.
What am I doing wrong?
Thank you for your help
Best regards
Alex
--
You received this message because you are subscribed to the Google Groups "DataStax Python Driver for Apache Cassandra User Mailing List" group.
To unsubscribe from this group and stop receiving emails from it, send an email to python-driver-user+unsubscribe@lists.datastax.com.
--no-murmur3" and final "--no-libev" It is:To unsubscribe from this group and stop receiving emails from it, send an email to python-driver-user+unsub...@lists.datastax.com.
To unsubscribe from this group and stop receiving emails from it, send an email to python-driver-user+unsubscribe@lists.datastax.com.
To unsubscribe from this group and stop receiving emails from it, send an email to python-driver-user+unsub...@lists.datastax.com.
Try to set the variable environment CASS_DRIVER_NO_EXTENSIONS=1, this will disable all extensions and provide the driver with its pure python implementation.See https://datastax.github.io/python-driver/installation.html for more details.
To unsubscribe from this group and stop receiving emails from it, send an email to python-driver-user+unsubscribe@lists.datastax.com.
--