ubuntu設置qt環境變量的示例:
1.打開終端,輸入以下命令打開環境變量配置文件。
sudo vim /etc/profile
2.在配置文件最后一行添加以下代碼:
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"
3.修改成功后,輸入以下命令使其生效即可。
sudo source /etc/profile