django - How and where to install a module in python from github -


i need install module (pyrise) github. because need modify , later on commit changes , ask pull request.

if install pip usual pyrise folder __init__.py @ root level.

so unistalled pip , dis ( in site-packages folder )

git clone git@github.com:nicoladj77/pyrise.git cd pyrise python setup.py install 

this installed correctly everything, have pyrise folder under site-packages , pyrise folder inside pyrise. , first pyrise has empty __init__.py , reason when

import pyrise 

i can't access object, because proper __init__.py inside second pyrise folder.

what doing wrong?am installing in wrong dir?

try installing develop:

git clone git@github.com:nicoladj77/pyrise.git cd pyrise python setup.py develop 

Comments

Popular posts from this blog

Why does Ruby on Rails generate add a blank line to the end of a file? -

keyboard - Smiles and long press feature in Android -

node.js - Bad Request - node js ajax post -