Skip to content

Instantly share code, notes, and snippets.

@diegopacheco
Last active June 2, 2022 23:31
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save diegopacheco/593ead5d53d9279b0c64d522149dca0f to your computer and use it in GitHub Desktop.
Save diegopacheco/593ead5d53d9279b0c64d522149dca0f to your computer and use it in GitHub Desktop.
How to install cqlsh only on Linux?
pip3 install cqlsh==4.1.1
cqlsh --version
# or...
sudo su root
pip install cqlsh==4.1.1
cqlsh --version
@guyellis
Copy link

I found a more recent version of cqlsh 5.0.3 - any reason not to install that instead?

@diegopacheco
Copy link
Author

@guyellis

yes for some applications I have there is an issue.

@DarshanPathak45
Copy link

@diegopacheco Unix complaining about pip3 not found.

@shnireck
Copy link

@diegopacheco Unix complaining about pip3 not found.

pip is a python package manager, on debian/ubuntu systems install it as:

sudo apt install python3-pip

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment