En's Blog

Techy blogs

0%

Installation/Deployment

1
2
3
4
5
6
7
$ sudo apt-get install gnupg
$ sudo adduser testgpguser
$ sudo su testgpguser
$ cd
$ virtualenv --no-site-packages venv
$ source venv/bin/activate
$ pip install python-gnupg
Read more »

This was a tech spike I did for investigating the 3 datetime libraries we were interested in a project.

Read more »

Problem Description

When you create a symbolic link to start sublime text editor from command line in tmux, you get an error message:

1
Unable to launch sublime text

This is due to tmux doesn’t have root access to the bin directory. The following steps fixed this issue for me on my Mac.

Read more »