Skip to content

How to run on macOS

Vicky Wang edited this page Apr 18, 2022 · 10 revisions

How to run on Windows

  1. Install Docker and open it

  2. Open Windows PowerShell and run the following commands:

    get demo code:

    git clone https://github.com/naivesystems/analyze-demo.git
    cd analyze-demo

    run NaiveSystems™ Analyze Personal with Docker:

    docker run -v $(pwd):/src -v $(pwd)/out:/output ccr.ccs.tencentyun.com/naivesystems/analyze:2022.1.0.0 /src/run_analyzer
  3. If you encountered with such warning:

    WARNING: The requested image's platform (linux/amd64) does not match the detected host platform (linux/arm64/v8) and no specific platform was requested
    

Run following cmd

```bash
docker run --platform linux/amd64 -v $(pwd):/src -v $(pwd)/out:/output ccr.ccs.tencentyun.com/naivesystems/analyze:2022.1.0.0 /src/run_analyzer
```
Clone this wiki locally