Re: Install library from Github

2020-01-02 Thread Jorge Gimeno
On Thu, Jan 2, 2020 at 7:14 PM Mark Ogilvie wrote: > Jorgge, In answer to your question, I Python 3 was installed on my > Windows 10 PC and could be launched by simply typing "python" at the C:\ > prompt of the command line. > With Python session running, I was not able to locate pip until I ran

Re: Install library from Github

2020-01-02 Thread Mark Ogilvie
Jorgge, In answer to your question, I Python 3 was installed on my Windows 10 PC and could be launched by simply typing "python" at the C:\ prompt of the command line. With Python session running, I was not able to locate pip until I ran the installation of Pip earlier today. Is it possible that p

Re: Install library from Github

2020-01-02 Thread Jorge Gimeno
On Wed, Jan 1, 2020 at 6:07 PM Mark34.59 wrote: > Windows 10 PC with new Git installation is failing to recognize the > command "pip": > pip install git+https://github.com/gbozee/django- (command I typed per > instructions) > bash: pip: command not found (response from Git) > > On Wednesday, Janu

Re: Install library from Github

2020-01-02 Thread Mark34.59
Sanusi, This command is very useful. Thanks! On Thursday, January 2, 2020 at 8:48:55 AM UTC-5, sanusi ibrahim adekunle wrote: > > Make sure pip is installed on your system. > > Go to your command prompt and enter "pip --version" to check if pip is > installed on your system > > On Thu, Jan 2,

Re: Install library from Github

2020-01-02 Thread Mark34.59
Thanks, Klaus! Your advise was spot-on. Pip did indeed need to be installed and that allowed me to take the next step to providing access to Github library on my Windows PC. For some reason my fairly recent installation of Python pulled down a very old version of pip. But I found a solution: I r

Re: Install library from Github

2020-01-02 Thread sanusi ibrahim adekunle
Make sure pip is installed on your system. Go to your command prompt and enter "pip --version" to check if pip is installed on your system On Thu, Jan 2, 2020, 13:49 Klaus Laube wrote: > Hi. > > The pip utility is missing, so you need to install it. I'm not a Windows > user, but I believe the e

Re: Install library from Github

2020-01-02 Thread Klaus Laube
Hi. The pip utility is missing, so you need to install it. I'm not a Windows user, but I believe the easier way to do that is by running the `get-pip.py` Python script: - Download it from https://bootstrap.pypa.io/get-pip.py - Via command prompt, execute `python get-pip.py` It should be

Re: Install library from Github

2020-01-02 Thread John McClain
did you try without "pip" install git+https://github.com/gbozee/django- I assume the git url is not complete but you get the idea On Thu, 2 Jan 2020 at 02:07, Mark34.59 wrote: > Windows 10 PC with new Git installation is failing to recognize the > command "pip": > pip install git+https://gith

Re: Install library from Github

2020-01-01 Thread Mark34.59
Windows 10 PC with new Git installation is failing to recognize the command "pip": pip install git+https://github.com/gbozee/django- (command I typed per instructions) bash: pip: command not found (response from Git) On Wednesday, January 1, 2020 at 1:17:00 PM UTC-5, sanusi ibrahim adekunle wro

Re: Install library from Github

2020-01-01 Thread sanusi ibrahim adekunle
Make sure Git is installed on your system. Below is a link to a tutorial on installing Git for windows or Mac: https://www.atlassian.com/git/tutorials/install-git After Git is installed on your system, try out this command : pip install git+ the url of the github library For example: pip install

Install library from Github

2019-12-31 Thread krestoufer Toumas
I wish everyone a happy new year. I want to include a Library from Github in my Django project but I don’t know how to do it. I found this tutorial on stack overflow https://stackoverflow.com/questions/16584552/how-to-state-in-requirements-txt-a-direct-github-source But this didn’t work for me can