milosev.com
  • Home
    • List all categories
    • Sitemap
  • Downloads
    • WebSphere
    • Hitachi902
    • Hospital
    • Kryptonite
    • OCR
    • APK
  • About me
    • Gallery
      • Italy2022
      • Côte d'Azur 2024
    • Curriculum vitae
      • Resume
      • Lebenslauf
    • Social networks
      • Facebook
      • Twitter
      • LinkedIn
      • Xing
      • GitHub
      • Google Maps
      • Sports tracker
    • Adventures planning
  1. You are here:  
  2. Home
  3. Windows

Installing the GitHub Copilot CLI on Windows 11

Details
Written by: Stanko Milosev
Category: Windows
Published: 18 January 2026
Last Updated: 18 January 2026
Hits: 27
First, I executed the following command:
winget install GitHub.Copilot

Installing the MarkItDown Python Tool for Converting Files to Markdown

Details
Written by: Stanko Milosev
Category: Windows
Published: 18 January 2026
Last Updated: 18 January 2026
Hits: 26
MarkItDown is a Python tool for converting files and Office documents to Markdown.

First, I executed the following command: Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy RemoteSigned

Otherwise, I received the following error:
.\.venv\Scripts\Activate.ps1 : File C:\Users\user\.venv\Scripts\Activate.ps1 cannot be loaded. The file
C:\Users\user\.venv\Scripts\Activate.ps1 is not digitally signed. You cannot run this script on the current
system. For more information about running scripts and setting execution policy, see about_Execution_Policies at
https:/go.microsoft.com/fwlink/?LinkID=135170.
At line:1 char:1
+ .\.venv\Scripts\Activate.ps1
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : SecurityError: (:) [], PSSecurityException
    + FullyQualifiedErrorId : UnauthorizedAccess
Next, I created a virtual environment by running:

python -m venv .venv
Then, I activated the virtual environment by running:
.\.venv\Scripts\Activate.ps1
With the virtual environment activated, I executed the following command:
(.venv) PS C:\Users\user> pip install "markitdown[all]"

Step-by-Step Guide to Installing Python on Windows 11

Details
Written by: Stanko Milosev
Category: Windows
Published: 18 January 2026
Last Updated: 18 January 2026
Hits: 78
On the webpage https://www.python.org/downloads/, I clicked the “Download Python Installer” button, which downloaded the file python-manager-25.2.msix.

After executing python-manager-25.2.msix, I received the following message:
The legacy 'py' command is still installed.
For this reason, I selected "N" (do not install).

After that, I received the following message:

The global shortcuts directory is not configured.

Configuring this enables commands like python3.14.exe to run from your
terminal, but is not needed for the python or py commands (for example, py
-V:3.14).

We can add the directory (C:\Users\user\AppData\Local\Python\bin) to PATH
now, but you will need to restart your terminal to use it. The entry will be
removed if you run py uninstall --purge, or else you can remove it manually when
uninstalling Python.
Add commands directory to your PATH now? [y/N]
At this prompt, I selected "y".

In the next step, I received the following message:

PATH has been updated, and will take effect after opening a new terminal.

********************************************************************************

You do not have the latest Python runtime.

Install the current latest version of CPython? If not, you can use 'py install
default' later to install.

Install CPython now? [Y/n]
At this prompt, I pressed "Y".

To verify that Python was installed successfully, I executed the following commands:

python --version
pip --version
The output was as follows:
PS C:\Users\user> python --version
Python 3.13.5
PS C:\Users\user> pip --version
pip 25.1.1 from C:\Python313\Lib\site-packages\pip (python 3.13)
PS C:\Users\user>

Step-by-Step Guide: Installing OpenWebUI on Windows 11 with Docker

Details
Written by: Stanko Milosev
Category: Windows
Published: 18 January 2026
Last Updated: 18 January 2026
Hits: 29
First, a note about my setup: the host system runs Windows 11, and all tools are installed inside a Windows 11 virtual machine using VMware. To fully utilize the available hardware resources on the host system, I installed Ollama.

Next, download and install Docker Desktop. I recommend installing it via the Microsoft Store, which you can access here.

Then, install the Windows Subsystem for Linux (WSL) if it is not already installed:

wsl --install
After the installation completes, reboot your system.

Next, execute the following command to connect OpenWebUI to Ollama running on another machine. Replace http://192.168.2.39:11434 with the IP address of your Ollama instance:

docker run -d `
  --name open-webui `
  -p 3000:8080 `
  -e OLLAMA_BASE_URL=http://192.168.2.39:11434 `
  --restart unless-stopped `
  ghcr.io/open-webui/open-webui:main
After the installation completes, wait a short time for OpenWebUI to start. The service does not start immediately, and no status message is shown during the initialization process.
  1. TestComplete
  2. List of Windows application which I like
  3. Word: Stop Ruler from "Snapping"
  4. Tor: anonymity online

Subcategories

Administration

MS Outlook 2007


Windows 7


GIT

Powershell

Windows 8

Notepad++

Page 1 of 8

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8