using multiple packages in a go executable code example
Example 1: Superuser creation skipped due to not running in a TTY. You can run `manage.py createsuperuser` in your project to create one manually.
$ winpty python manage.py createsuperuser
//It should work by just appending 'winpty' before the command
Example 2: update all packages in cmd
sudo pip install [package_name] --upgrade
#update single Package
Example 3: how to run program with other files in gdb
(gdb) file /tmp/helloworld
Reading symbols from /tmp/helloworld...done.
(gdb) b main
Breakpoint 1 at 0x804860c: file ./main.c, line 5.
(gdb) r
Starting program:
Remote: /tmp/helloworld
Breakpoint 1, main () at ./main.c:5
5 {
(gdb)