[Fixed]-Copying site-package into my own project for a 'local copy'

1👍

You could simply create a virtual environment which is completely isolated: http://docs.python-guide.org/en/latest/dev/virtualenvs/


virtualenv

virtualenv is a tool to create isolated Python environments. virtualenv creates a folder which contains all the necessary executables to use the packages that a Python project would need.

Install virtualenv via pip:

$ pip install virtualenv

Basic Usage

Create a virtual environment for a project:

$ cd my_project_folder
$ virtualenv venv

Leave a comment