-
Notifications
You must be signed in to change notification settings - Fork 25
How to run on macOS
Vicky Wang edited this page Apr 18, 2022
·
10 revisions
-
Install Docker and open it
-
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
-
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
```