I want to install the qdrant_client and work with it but I simply cannot do that.
When I try to run the command pip3 install qdrant_client
it says :
error: externally-managed-environment
× This environment is externally managed
╰─> To install Python packages system-wide, try brew install
I have even tried to create a virtual environment running these command lines:
python3 -m venv path/to/venv
python3 -m venv ~/qdrant_venv
source path/to/venv/bin/activate
pip3 install qdrant_client
After these scripts I get this result:
% pip3 install qdrant_client
Requirement already satisfied: qdrant_client in ./Users/myuser/Documents/personal/fax/MyFolder/lib/python3.12/site-packages (1.9.2)
But however when I run the command qdrant_client --version
I get command not found: qdrant_client
.
I am a newbie in Python and with macOS env as well.