Re: install package from github repository

2013-11-06 Thread Amirouche Boubekki
2013/11/6 C. Ng > Ok, that seems to work... I modified from another package. > cool > I don't understand how setup.py does it exactly, but got it done anyways. > as usual :-) -- https://mail.python.org/mailman/listinfo/python-list

Re: install package from github repository

2013-11-05 Thread C. Ng
Ok, that seems to work... I modified from another package. I don't understand how setup.py does it exactly, but got it done anyways. -- https://mail.python.org/mailman/listinfo/python-list

Re: install package from github repository

2013-11-05 Thread C. Ng
nope there is no installation instructions -- https://mail.python.org/mailman/listinfo/python-list

Re: install package from github repository

2013-11-04 Thread Chris Angelico
On Mon, Nov 4, 2013 at 8:56 PM, C. Ng wrote: > Hi, > > I have cloned someone's repository on my local drive using git command: > git clone http://github.com/xxx.git > > But I don't find any setup.py file. How do I install the package xxx? So that > I can 'import xxx' in my python script. Does th

Re: install package from github repository

2013-11-04 Thread Amirouche Boubekki
create a setup.py and install it 2013/11/4 C. Ng > Hi, > > I have cloned someone's repository on my local drive using git command: > git clone http://github.com/xxx.git > > But I don't find any setup.py file. How do I install the package xxx? So > that I can 'import xxx' in my python script. >

install package from github repository

2013-11-04 Thread C. Ng
Hi, I have cloned someone's repository on my local drive using git command: git clone http://github.com/xxx.git But I don't find any setup.py file. How do I install the package xxx? So that I can 'import xxx' in my python script. Many thanks. -- https://mail.python.org/mailman/listinfo/pyt