Ubuntu QT环境变量配置

sudo vim /etc/profile

在文件底部加入

export PATH="/home/zhenyi/Qt5.12.2/Tools/QtCreator/bin:$PATH"
export PATH="/home/zhenyi/Qt5.12.2/5.12.2/gcc_64/bin:$PATH"
export LD_LIBRARY_PATH="/home/zhenyi/Qt5.12.2/5.12.2/gcc_64/lib:$LD_LIBRARY_PATH"
export QT_PLUGIN_PATH="/home/zhenyi/Qt5.12.2/5.12.2/gcc_64/plugins:$QT_PLUGIN_PATH"
export QML2_IMPORT_PATH="/home/zhenyi/Qt5.12.2/5.12.2/gcc_64/qml:$QML2_IMPORT_PATH"

修改安装路径,保存

 

你可能感兴趣的:(Linux,QT)