installing mssql-cli on Linux via pip
To install mssql-cli in linux, the microsoft guide to add package and apt-get install mssql-cli doesn't work.
So have to resort to using pip to setup this guy.
apt-get update
apt-get install -y python3-pip
apt-get install -y python-is-python3
Installing MSSQL-Cli
To install mssql-cli, run the following command:-
pip install mssql-cli
Comments