You are here:-Hacks
29 05, 2017

Bower install from a forked repository

By | May 29th, 2017|Categories: bower install, git, Hacks|Tags: , |0 Comments

If for any reason you need to fork a repo and want to install your forked version using Bower, follow these steps:  Fork the repository Clone the forked repo on your computer Make desired changes Increment version number in bower.json (create one if none exists e.g. 4.0.1) Commit and push Create a new version tag

1 05, 2017

virtualenv for python3

By | May 1st, 2017|Categories: Fixes, Hacks|Tags: , , |0 Comments

Simple steps to setup virtualenv for Python3 To setup virtualenv for python3 for Django projects, create and cd into the desired folder for the Django project. Create a folder for virtualenv, eg mkdir venv $ cd venv // The created folder for virtualenv Then run these commands worked for me in this order: $ virtualenv

28 04, 2017

Fix IOError: [Errno 2] No such file or directory error for appdirs

By | April 28th, 2017|Categories: Fixes, Hacks|Tags: , , , , |0 Comments

Appdirs is a small Python module for determining appropriate platform-specific dirs, e.g. a "user data dir". Github repo - https://github.com/ActiveState/appdirs This error from my experience occurred when I updated my local branch from origin and ran pip install to get the latest installed packages. pip tried to upgrade appdir but it failed for some unknown reasons,