
maintenance
wangbingfeng0
I'm back
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
jenv: version `1.8‘ is not installed
when to use java it prompts jenv: version `1.8' is not installed, the details are as follows: % java -version jenv: version `1.8' is not installed jenv: version `1.8' is not installed % jenv exec bash jenv: version `1.8' is not installed jenv: vers..原创 2020-12-28 23:41:00 · 950 阅读 · 0 评论 -
Atom-platformio-ide-terminal 2.10.0-Some installed packages could not be loaded because they contain
prebuild-install WARN install connect ETIMEDOUT 192.30.253.112:443 gyp ERR! configure error gyp ERR! stack Error: Python executable "/Applications/Atom.app/Contents/Resources/app/apm/bin/python-interceptor.sh" is v3.7.4, which is not supported by gyp. gy.原创 2020-12-26 21:46:48 · 784 阅读 · 1 评论 -
error: gpg failed to sign the data fatal: failed to write commit object'
step 1. test ~ % echo "test" | gpg --clearsign Warning: Failed to set locale category LC_NUMERIC to en_CN. Warning: Failed to set locale category LC_TIME to en_CN. Warning: Failed to set locale ca...原创 2019-11-03 17:52:51 · 762 阅读 · 0 评论 -
windows 10 32bit 配置Python编程环境
确认系统架构 点击桌面左下角的搜索按钮,输入cmd运行命令行界面(Command Prompt); 在命令行界面输入wmic CPU get DataWidth ↩︎,返回的是 CPU 的架构,64 或 32 位; 在命令行界面输入wmic OS get OSArchitecture ↩︎,返回的是 Windows 操作系统架构,64 或 32 位。 确认 PowerShell...原创 2019-10-27 15:04:41 · 1254 阅读 · 0 评论 -
windows pe for Windows 10 docs
windows pe info urls: basic infosWindows PE (WinPE) Windows PE (WinPE) for Windows10 is a small operating system used to install, deploy, and repair Windows10 for desktop editions (Home, Pro, En...原创 2019-10-13 11:56:34 · 430 阅读 · 0 评论 -
Batch IF .exe is running, IF not start it
tasklist | findstr /i "appName.exe" > nul && echo Yeah || echo Nope The command(s) after&&on the same line will run whenfindstrfound the"appName.exe"and skip the command(s)...原创 2019-10-22 22:40:02 · 137 阅读 · 0 评论