Take a look at this answer:
Command to list recently installed packages that were installed via any method (apt-get, Software Center et al.):
cat /var/log/dpkg.log | grep "\ install\ "
You could run this command to list only the recently installed package names,
awk '$3~/^install$/ ' /var/log/dpkg.log