there is a tendency to think that every AI company is from either the US or china, but there are some with (semi) European roots. One of them is hugging face.
They have the MCP course, one often advised as play around course. For my first steps with MCP I don't want to run all local for the first time and first play a bit around in a more sandboxed environment.
https://huggingface.co/learn/mcp-course/unit2/introduction
One of the fun things is that I again come back to my apple renewably state. Python is not directly installed from the command line, thus learning first all new apple stuff (homebrew, uv). Linux is sometimes so much easier :)
After installing home-brew it was installing VU & python.
My python skills are a bit rusty, seems the virtual setup of python is not standard installed, thus also python -m venv .venv didn't work. In the end it seems its python3 -m venv .venv which did the trick (thanks to the super python RTFM :D)
https://packaging.python.org/en/latest/guides/installing-using-pip-and-virtual-environments/
Top comments (0)