diff --git a/pkg/usr/share/ssinstall/transhell/ssinstall_en_US.transhell b/pkg/usr/share/ssinstall/transhell/ssinstall_en_US.transhell
index aa85c03..c0f5d0b 100644
--- a/pkg/usr/share/ssinstall/transhell/ssinstall_en_US.transhell
+++ b/pkg/usr/share/ssinstall/transhell/ssinstall_en_US.transhell
@@ -2,3 +2,5 @@
 TRANSHELL_CONTENT_HASH_CHECK_FAILED="Failed in checking package hash! \nPossibly reason can be the package is broken, laggy in sync of Spark Store repository, or, there is a malware attempt to attack. \nIf you don't know what happend, please try install again after execute the command below\n sudo aptss ssupdate\n\nIf the problem still happen, please click APP Feedback button in the APP information page to feedback to us.\n\n If you are in the Audition Group,Please use ssaudit instead of ssinstall to audit APPs,for ssinstall is used for password-free install now.\nIf you want to install an app that is removed from Spark Store repository,you can also use ssaudit."
 TRANSHELL_CONTENT_PLEASE_RUN_AS_ROOT="Please run ssinstall as root"
 TRANSHELL_CONTENT_FILE_NOT_EXIST="File not exist"
+TRANSHELL_CONTENT_WILL_NOT_DELETE_DEB="No delete after install option given, will not delete the deb"
+TRANSHELL_CONTENT_DEB_IS_DELETED="--delete-after-install option is given and the installation is succeeded, delete the deb file."
diff --git a/pkg/usr/share/ssinstall/transhell/ssinstall_zh_CN.transhell b/pkg/usr/share/ssinstall/transhell/ssinstall_zh_CN.transhell
index 44bc3fb..88fbffa 100644
--- a/pkg/usr/share/ssinstall/transhell/ssinstall_zh_CN.transhell
+++ b/pkg/usr/share/ssinstall/transhell/ssinstall_zh_CN.transhell
@@ -2,3 +2,5 @@
 TRANSHELL_CONTENT_HASH_CHECK_FAILED="软件包校验失败!这不应该发生!\n可能是因为软件包已损坏,星火仓库未同步,或者最坏的情况:恶意软件尝试利用自动安装来入侵系统!\n如果你不清楚发生了什么,请执行 sudo aptss ssupdate 后再尝试安装。\n如果问题仍然存在,请在应用信息界面点击 应用反馈 来提交反馈给我们!\n\n 如果你是审核人员,请使用 ssaudit来替代ssinstall进行审核工作,因为现在ssinstall已经被用于免密安装。\n如果你正在尝试安装已经下架的星火应用,也可用ssaudit来替代ssinstall"
 TRANSHELL_CONTENT_PLEASE_RUN_AS_ROOT="请使用root启动ssinstall"
 TRANSHELL_CONTENT_FILE_NOT_EXIST="文件不存在"
+TRANSHELL_CONTENT_WILL_NOT_DELETE_DEB="未指定安装后删除或安装出错,不删除deb包"
+TRANSHELL_CONTENT_DEB_IS_DELETED="使用了--delete-after-install选项且安装未出错,删除deb包"
diff --git a/src/widgets/common/downloaditem.cpp b/src/widgets/common/downloaditem.cpp
index ac5bbf6..4b25a7a 100644
--- a/src/widgets/common/downloaditem.cpp
+++ b/src/widgets/common/downloaditem.cpp
@@ -175,7 +175,7 @@ void DownloadItem::slotAsyncInstall(int t)
     switch(t)
     {
     case 0:
-        installer.start("pkexec", QStringList() << "ssinstall" << "/tmp/spark-store/" + ui->label_filename->text().toUtf8());
+        installer.start("pkexec", QStringList() << "ssinstall" << "/tmp/spark-store/" + ui->label_filename->text().toUtf8() + "--delete-after-install");
         break;
     case 1:
         installer.start("deepin-deb-installer", QStringList() << "/tmp/spark-store/" + ui->label_filename->text().toUtf8());
diff --git a/tool/ssinstall b/tool/ssinstall
index a8262bb..57d2c04 100755
--- a/tool/ssinstall
+++ b/tool/ssinstall
@@ -107,6 +107,14 @@ try_run_ret="$?"
 
 dpkg -i  "$DEBPATH"  || aptss install -yf 
 
+#### --delete
+if [ "$?" = "0" ] && [ "$2" = "--delete-after-install" ];then
+rm "$DEBPATH"
+echo "${TRANSHELL_CONTENT_DEB_IS_DELETED}"
+else
+echo "${TRANSHELL_CONTENT_WILL_NOT_DELETE_DEB}"
+fi
+
 else