mirror of
https://github.com/rricharz/Tek4010.git
synced 2026-05-08 08:23:49 +00:00
45 lines
793 B
Plaintext
45 lines
793 B
Plaintext
Tek4010 on Windows
|
|
==================
|
|
|
|
This is a quick installation guide for Windows.
|
|
|
|
Tek4010 runs on Windows using WSL (Windows Subsystem
|
|
for Linux) with Ubuntu.
|
|
|
|
Quick start:
|
|
|
|
1. Open PowerShell and type:
|
|
|
|
wsl --install -d Ubuntu
|
|
|
|
2. Reboot your system.
|
|
|
|
3. Start Ubuntu from the Start menu.
|
|
|
|
4. Install required packages:
|
|
|
|
sudo apt-get update
|
|
sudo apt-get install git libgtk-3-dev make gcc pkg-config
|
|
|
|
5. Download the source:
|
|
|
|
git clone https://github.com/rricharz/Tek4010
|
|
cd Tek4010
|
|
|
|
6. Build and install:
|
|
|
|
make clean
|
|
make
|
|
make install
|
|
|
|
7. Check installation while you are still in the
|
|
Tek4010 directory:
|
|
|
|
make check
|
|
|
|
This runs a demonstration and verifies that tek4010 works.
|
|
|
|
For full instructions and additional information, see:
|
|
|
|
docs/windows-wsl.md
|