解决Ubuntu下Postman运行白屏
Ubuntu下Postman的安装、及白屏解决办法。
下载
去官网https://www.postman.com/downloads/ 下载自己需要的版本。
解压运行
解压文件:
sudo tar -xzf Postman-linux-x64-7.26.1.tar.gz
切换目录:
cd Postman
运行:
./Postman
创建启动图标,便于快速启动
sudo ln -s /home/low/Downloads/Postman/Postman /usr/bin/
此后直接在命令行输入Postman即可运行。
解决白屏:
运行时发现一片空白,如下图。百度了一晚上,只有Windows的解决方案,没找到Ubuntu的解决办法。
根据Windows的情况进行猜测,怀疑也是环境变量的问题;
设置临时环境变量验证一下:export POSTMAN_DISABLE_GPU=true
运行发现问题解决了:
sudo gedit /etc/profile
末尾加入:
export POSTMAN_DISABLE_GPU=true
export PATH=$PATH:$POSTMAN_DISABLE_GPU
会在下次登录时生效,也可以用下面的命令立即生效。
source /etc/profile
此后运行Postman就会正常。
All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.