Solve all kinds of cannot be found problems reported by appium-doctor

Solve all kinds of cannot be found problems reported by appium-doctor

 

 

1. opencv4nodejs cannot be found. Cmake
--version Check if cmake is
installed and executed: npm -g install opencv4nodejs install opencv4nodejs

2. Solve the problem of mjpeg-comsumer cannot be found
Install: npm i -g mjpeg-consumer

3、ffmpeg cannot be found

FFmpeg download: http://ffmpeg.zeranoe.com/builds/

After downloading, unzip:

Environment variable configuration: xxx \ bin

ok

ffmpeg --version check

 

4. The idb and idb_companion are not installed
commands are as follows:
brew tap facebook / fb
brew install idb-companion
pip3.6 install fb-idb
Note: executing pip3.6 install fb-idb may report -bash: pip3.6: command not found
a solution:
configuration environment variable
to perform open .bash_profile open the Add
Export PYTHON_HOME = / Home / dbuser / Python-3.7.3
Export PYTHONHOME the PATH = / bin: PYTHON_HOME / bin: PYTHON
H OME / bin: the PATH

Python-3.7.3 here is the version of Python installed by yourself, to be changed to your own, the same

pip3.7 is also to be changed to its own Python version
and executed to make it effective:
source ~ / .bash_profile
is OK after executing pip3.7.
source .bash_profile refresh

5、applesimutils cannot be found
brew tap wix/brew
brew install applesimutils

6, bundletool.jar can not be found
in https://github.com/google/bundletool/releases download bundletool.jar,
renamed this bundletool
in the android sdk directory, create a directory bundletool put into the jar package,
in The terminal switches to the current directory
and executes the chmod + x bundletool.jar command to add permissions to the jar package to
modify the environment variables, and append it after path: $ ANDROID_HOME / bundle-tool /,

source .bash_profile refresh

Guess you like

Origin www.cnblogs.com/sasa-python/p/12713535.html