/cassandra-utilities

Repository dedicated to develop utilities to test the NoSQL database Apache Cassandra

Primary LanguagePython

Cassandra Utilities

Repository dedicated to develop utilities to test the NoSQL database Apache Cassandra

How to use a Python env

Install python package using pip:

pip install virtualenv

After, in the root directory, execute:

python -m venv env

Active your env:

  • In windows

    env/Scripts/activate.bat
  • In macOS/Linux

    source env/bin/activate

Install project requirements:

pip install -r requirements.txt

To leave the env, execute the command below:

deactivate