Re: Looking for help installing django

2021-05-06 Thread parmeshwar deharkar
no edits of any kind. I > > even reinstalled python and got the same problem, > > > > Just installing Django will not run an HTTP server and point your > browser to port 8000 on your localhost, so obviously you did something > more than that. > > If you want someone to h

Re: Looking for help installing django

2021-05-06 Thread Kasper Laudrup
On 06/05/2021 20.17, Philip Pelletier wrote: > All I did was install and start django. I made no edits of any kind. I > even reinstalled python and got the same problem, > Just installing Django will not run an HTTP server and point your browser to port 8000 on your localhost, so obvi

Re: Looking for help installing django

2021-05-06 Thread DJANGO DEVELOPER
yeah, Sharif is right. follow the official dos. if you still not understanding the flow. come back and ask again. On Thu, May 6, 2021 at 11:24 PM Sharif Mehedi wrote: > I suggest you follow the official documentation page to properly set up > for a django project. > Getting Started:

Re: Looking for help installing django

2021-05-06 Thread Sharif Mehedi
I suggest you follow the official documentation page to properly set up for a django project. Getting Started: https://docs.djangoproject.com/en/3.2/intro/ If you have trouble following the doc. Please, ask for help, and also be specific about what part of documentation you do not understand.

Re: Looking for help installing django

2021-05-06 Thread Philip Pelletier
All I did was install and start django. I made no edits of any kind. I even reinstalled python and got the same problem, On Thursday, May 6, 2021 at 1:40:29 PM UTC-4 abubak...@gmail.com wrote: > can you please explain to me that what are you trying to do? because you > have explained nothing

Re: Looking for help installing django

2021-05-06 Thread DJANGO DEVELOPER
can you please explain to me that what are you trying to do? because you have explained nothing in your question about your problem On Thu, May 6, 2021 at 10:26 PM Sharif Mehedi wrote: > Not very understandable, no useful information on your message body, only > there's an exception! > Try to

Re: Looking for help installing django

2021-05-06 Thread Sharif Mehedi
Not very understandable, no useful information on your message body, only there's an exception!Try to understand what you are doing and when you understand ask for help if you cannot solve it yet. On Thursday, May 6, 2021, 10:27:35 PM GMT+6, Philip Pelletier wrote: I get this error

Looking for help installing django

2021-05-06 Thread Philip Pelletier
I get this error message on the browser at 127.0.01:8000 Environment: Request Method: GET Request URL: http://127.0.0.1:8000/ Django Version: 3.2.1 Python Version: 3.9.4 Installed Applications: ['django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes',

Re: installing Django in python3

2021-03-07 Thread Kasper Laudrup
On 06/03/2021 18.29, Pavel Lopez wrote: When installing Django in python3 I have the following error ValueError: ZIP does not support timestamps before 1980 someone knows how i can solve this What do you man by "installing Django in python3"? That doesn't make much sense. If you

Re: installing Django in python3

2021-03-07 Thread Septo Suharyanto
maybe your desktop o'clock must be revised 2021-03-07 0:29 GMT+07.00, Pavel Lopez : > When installing Django in python3 I have the following error > ValueError: ZIP does not support timestamps before 1980 > someone knows how i can solve this > > -- > You received this m

installing Django in python3

2021-03-06 Thread Pavel Lopez
When installing Django in python3 I have the following error ValueError: ZIP does not support timestamps before 1980 someone knows how i can solve this -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this grou

Re: I am stuck at "Installing Django on PythonAnywhere" can anyone help me ?

2020-09-21 Thread Mohammad Ahshan Danish
 On Mon, Sep 21, 2020 at 7:04 PM Shahprogrammer wrote: > That's not the problem with installation of Django it's with your urls > > On Monday, 21 September, 2020 at 6:49:56 pm UTC+5:30 kashubh...@gmail.com > wrote: > >> [image: Screenshot (418).png] >> > -- > You received this message because

Re: I am stuck at "Installing Django on PythonAnywhere" can anyone help me ?

2020-09-21 Thread Shahprogrammer
That's not the problem with installation of Django it's with your urls On Monday, 21 September, 2020 at 6:49:56 pm UTC+5:30 kashubh...@gmail.com wrote: > [image: Screenshot (418).png] > -- You received this message because you are subscribed to the Google Groups "Django users" group. To

I am stuck at "Installing Django on PythonAnywhere" can anyone help me ?

2020-09-21 Thread Kashu Bhattarai
[image: Screenshot (418).png] -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To view this discussion on the web

Re: Error installing Django

2019-09-09 Thread achyuth n s
Hello Try installing using sudo in Linux based machines or in admin mode in Windows. Hope it helps. On Mon, 9 Sep 2019, 17:03 Milind Chilakwad, wrote: > I am trying to install Django 2.1 and above but everytiime I get an Error > 13 - Which says "I do not have permission to a file *.txt.gz". I

Error installing Django

2019-09-09 Thread Milind Chilakwad
I am trying to install Django 2.1 and above but everytiime I get an Error 13 - Which says "I do not have permission to a file *.txt.gz". I am unable to proceed. Any suggetions? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe

Re: Error while installing django

2019-07-26 Thread gaurav jain
Try this https://stackoverflow.com/questions/40183108/python-packages-hash-not-matching-whilst-installing-using-pip On Fri, 26 Jul, 2019, 8:03 PM Arisht Jain, wrote: > While installing dhandho via pip on Windows 7 having Python 3.7.0 > > I created a virtual en. And entered command :" pip

Error while installing django

2019-07-26 Thread Arisht Jain
While installing dhandho via pip on Windows 7 having Python 3.7.0 I created a virtual en. And entered command :" pip install django --timeout 1800" It started downloading: "Django-2.2.3-py3-none-any.whl (7.5MB)" After 5.0MB download an error occurred that said "THESE PACKAGES DO NOT MATCH THE

Re: Issues while creating virtual environment before installing Django

2019-07-17 Thread John P
Give pipenv a try. Simply create the folder your going to use and navigate into that folder. Then use pipenv install django, pipenv shell will load the virtual environment for you. Not sure what's causing the problem but this may make your life simpler. On Wed, Jul 17, 2019, 11:25 AM Mahesh

Re: Issues while creating virtual environment before installing Django

2019-07-17 Thread Yoo
Isn't Python 3.x automatically installed with virtualenv and pip? Try this: virtualenv venv Then, do: cd venv\scripts && activate Then you can start installing packages like this: pip install django On Wednesday, July 17, 2019 at 11:26:04 AM UTC-4, Mahesh Kumar wrote: > > Hi all, > I tried to

Re: Issues while creating virtual environment before installing Django

2019-07-17 Thread Mike Dewhirst
You can make it easy for yourself by doing a batch file to automate creation of the virtualenv. If you want I can post the one I use. Connected by Motorola Mahesh Kumar wrote: >Hi all, > >I tried to install the Django software in my Laptop command prompt, I have to >create(mkvirtualenv

Issues while creating virtual environment before installing Django

2019-07-17 Thread Mahesh Kumar
Hi all, I tried to install the Django software in my Laptop command prompt, I have to create(mkvirtualenv myproject) virtual evironment. But as soon as I have entered mkvirtualenv myproject, error is looping on and showling below error. Please try to help me, how to create vritual environment.

Re: Trouble installing Django

2018-09-04 Thread PASCUAL Eric
Campaigne Sent: Monday, September 3, 2018 7:35:09 PM To: Django users Subject: Trouble installing Django I have successfully installed python 3.7 and virtualenv. on my MACBook Pro with MAC High Sierra 10.6 Now I am having trouble installing Django I don't understand the error message I

Re: Trouble installing Django

2018-09-04 Thread Devender Kumar
If you wanna install across the system then just Use *root user *Or* sudo **pip install **Django* . this is install the django in your system. but Best practices is to use special env If you need any help installing django with env reply me i will help in that. Thanks enjoy Dev On Mon, Sep 3

Trouble installing Django

2018-09-03 Thread Iga John Bosco
U have installed python 3 but ure django installation is pick a different version of python. Simple. My experience is Linux or Ubuntu based. First get the path to ure python3 #Which python Or # python -c “from dilutions.sysconfig import get_get_python_lib; print get_python_li Then Do a

Re: Trouble installing Django

2018-09-03 Thread TimT Vogt
n my MACBook Pro > with MAC High Sierra 10.6 > Now I am having trouble installing Django > I don't understand the error message I am getting...especially teh last line. > > Owners-MacBook-Pro:realityBB owner$ pip install Django > Collecting Django > Downloading > https:

Re: Trouble installing Django

2018-09-03 Thread Julio Biason
Now I am having trouble installing Django > I don't understand the error message I am getting...especially teh last > line. > > > Owners-MacBook-Pro:realityBB owner$ pip install Django > Collecting Django > Downloading > https://file

Trouble installing Django

2018-09-03 Thread Phil Campaigne
I have successfully installed python 3.7 and virtualenv. on my MACBook Pro with MAC High Sierra 10.6 Now I am having trouble installing Django I don't understand the error message I am getting...especially teh last line. Owners-MacBook-Pro:realityBB owner$ pip install Django Collecting

Re: problem with installing django

2018-07-16 Thread Shay Hershko
i tried looking in the files and for some reson it says i dont have django -- You received this message because you are subscribed to the Google Groups "Django users"

problem with installing django

2018-07-16 Thread Shay Hershko
i tried instaling djagno for a few times and for some reson its not working i followed instructions on the site and on this video (https://www.youtube.com/watch?v=MEcWRk9w0t0),and this is what i am geting at the end

Re: NOVICE Question; Installing Django 1.11.2 in Python 3.6 with the correct path

2017-06-27 Thread Antonis Christofides
In addition, don't use spaces on either side of the == Antonis Christofides http://djangodeployment.com On 2017-06-27 19:02, Vijay Khemlani wrote: > You should run pip from the command line, not from inside the python > interpreter shell > > On Tue, Jun 27, 2017 at 11:25 AM,

Re: NOVICE Question; Installing Django 1.11.2 in Python 3.6 with the correct path

2017-06-27 Thread Vijay Khemlani
You should run pip from the command line, not from inside the python interpreter shell On Tue, Jun 27, 2017 at 11:25 AM, wrote: > A a Novice to Python and to Django How do i install Django into the > correct path , I followed the instruction in a Django manual and got an >

NOVICE Question; Installing Django 1.11.2 in Python 3.6 with the correct path

2017-06-27 Thread hliddic
A a Novice to Python and to Django How do i install Django into the correct path , I followed the instruction in a Django manual and got an error message; How do I install Django 1.11.2 on windows 10 with the following sys path >>> import sys >>> sys.path

Re: Installing Django in Window 10

2017-06-05 Thread Nandan Priyadarshi
Hi .. Django is Installed. I want to create API with Django with Cassandra DB.. I just want respected steps. Thanks. On Tuesday, 6 June 2017 11:37:24 UTC+8, Hemhem wrote: > > Are you sure you don't already have Django installed? > > Try to import Django from your Python prompt and see what

Re: Installing Django in Window 10

2017-06-05 Thread Oladipupo Elegbede
Are you sure you don't already have Django installed? Try to import Django from your Python prompt and see what happens. If it doesn't throw any error, you have it. If it does, you can do pip install Django That should install it. On Jun 5, 2017 9:11 PM, "Nandan Priyadarshi"

Installing Django in Window 10

2017-06-05 Thread Nandan Priyadarshi
Hi , I am using* Windows 10, 64-bit system. Using Anaconda for Python with 3.6 version. * C:\Users\nandan>python > Python 3.6.0 |Anaconda 4.3.0 (64-bit)| (default, Dec 23 2016, 11:57:41) > [MSC v.1900 64 bit (AMD64)] on win32 > Type "help", "copyright", "credits" or "license" for more

Re: Installing Django

2017-06-05 Thread Carlos Andre
pip install django==1.10 2017-06-05 13:59 GMT-03:00 Melvyn Sopacua : > On Monday 05 June 2017 06:44:13 Oladipupo Elegbede wrote: > > > For the Python prompt from CMD and do the following > > > > > > >>>import Django > > > >>>Django.VERSION > > > > 1) it's django not

Re: Installing Django

2017-06-05 Thread Melvyn Sopacua
On Monday 05 June 2017 06:44:13 Oladipupo Elegbede wrote: > For the Python prompt from CMD and do the following > > >>>import Django > >>>Django.VERSION 1) it's django not Django > This should tell you what version of Django you have. > > On Jun 5, 2017 7:21 AM, "Daniel Roseman"

Re: Installing Django

2017-06-05 Thread Oladipupo Elegbede
For the Python prompt from CMD and do the following >>>import Django >>>Django.VERSION This should tell you what version of Django you have. On Jun 5, 2017 7:21 AM, "Daniel Roseman" wrote: > On Monday, 5 June 2017 12:33:28 UTC+1, Richard Mungai wrote: >> >> Hi.. >>

Re: Installing Django

2017-06-05 Thread Daniel Roseman
On Monday, 5 June 2017 12:33:28 UTC+1, Richard Mungai wrote: > > Hi.. > I'm trying to install django using the pip command i.e (pip install > django) but i keep getting the same error message i.e "Requirement already > satisfied: django in c:\program files\python >

Installing Django

2017-06-05 Thread Richard Mungai
Hi.. I'm trying to install django using the pip command i.e (pip install django) but i keep getting the same error message i.e "Requirement already satisfied: django in c:\program files\python 35-32\lib\site-packages\django-1.10.6-py3.5.egg" How can I solve this?? -- You received this message

Re: installing django and deploying it in a shared hosting

2017-04-06 Thread ludovic coues
We won't be able to help or anything without a lot more of details. On 5 Apr 2017 11:29 pm, "harrison wachira" wrote: > I was unable to deploy django in a shared hosting > > -- > You received this message because you are subscribed to the Google Groups > "Django users"

installing django and deploying it in a shared hosting

2017-04-05 Thread harrison wachira
I was unable to deploy django in a shared hosting -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this

Re: Who can help me installing Django on windowsX machine?

2017-02-26 Thread Mike Dewhirst
On 27/02/2017 5:00 AM, Asifuzzaman Bappy wrote: hello Django community, I'm a new comer here. need some help with my installation of Django on my machine. I have python 2.7 already installed on my computer. but it seems like i cant pull this off. Open up a command prompt ... -> pip install

Who can help me installing Django on windowsX machine?

2017-02-26 Thread Asifuzzaman Bappy
hello Django community, I'm a new comer here. need some help with my installation of Django on my machine. I have python 2.7 already installed on my computer. but it seems like i cant pull this off. I know, what you are thinking at this point. why windows?? right?? but for the time being

Re: Installing Django

2017-01-30 Thread Danny Jr Chu
ssing Django-1.10.5.tar.gz >>> Writing >>> C:\Users\Luv\AppData\Local\Temp\easy_install-5dcbu64l\Django-1.10.5\setup.cfg >>> Running Django-1.10.5\setup.py -q bdist_egg --dist-dir >>> C:\Users\Luv\AppData\Local\Temp\easy_install-5dcbu64l\Django-1.10 >

Re: Installing Django

2017-01-30 Thread Antonis Christofides
>>> C:\Users\Luv\AppData\Local\Temp\easy_install-5dcbu64l\Django-1.10.5\setup.cfg >>> Running Django-1.10.5\setup.py -q bdist_egg --dist-dir >>> C:\Users\Luv\AppData\Local\Temp\easy_install-5dcbu64l\Django-1.10 >>>

Re: Installing Django

2017-01-30 Thread Danny Jr Chu
ir >> C:\Users\Luv\AppData\Local\Temp\easy_install-5dcbu64l\Django-1.10 >> .5\egg-dist-tmp-k4dzxio3 >> no previously-included directories found matching >> 'django\contrib\admin\bin' >> warning: no previously-included files matching '__pycache__' found >> a

Re: Installing Django

2017-01-30 Thread Antonis Christofides
1.10 >> .5\egg-dist-tmp-k4dzxio3 >> no previously-included directories found matching >> 'django\contrib\admin\bin' >> warning: no previously-included files matching '__pycache__' found >> anywhere in distribution >> creating c:\program

Re: Installing Django

2017-01-30 Thread Danny Jr Chu
> 'django\contrib\admin\bin' > warning: no previously-included files matching '__pycache__' found > anywhere in distribution > creating c:\program files (x86)\lib\site-packages\django-1.10.5-py3.6.egg > Extracting django-1.10.5-py3.6.egg to c:\program files > (x86)\lib\site-

Re: Installing Django

2017-01-30 Thread Danny Jr Chu
Hello Jani, you are an angel :) I have un-installed it and re-install to the right folder.. thanks a lot. On Monday, January 30, 2017 at 4:34:27 PM UTC+8, Jani Tiainen wrote: > > Hi, > > First you seem to be installing Django to Windows, it adds certain > complexity all

Re: Installing Django

2017-01-30 Thread Antonis Christofides
g '__pycache__' found anywhere in > distribution > creating c:\program files (x86)\lib\site-packages\django-1.10.5-py3.6.egg > Extracting django-1.10.5-py3.6.egg to c:\program files (x86)\lib\site-packages > Adding django 1.10.5 to easy-install.pth file > Installing django-admin.py s

Re: Installing Django

2017-01-30 Thread Jani Tiainen
Hi, First you seem to be installing Django to Windows, it adds certain complexity all together, it's not impossible though. By given paths for some strange reason easy_install seems to thing that you have installed your Python to "C:\program files (x86)\" directory (not su

Installing Django

2017-01-29 Thread Danny Jr Chu
ngo 1.10.5 to easy-install.pth file Installing django-admin.py script to c:\program files (x86)\Scripts error: [Errno 13] Permission denied: 'c:\\program files (x86)\\Scripts\\django-admin.py' -- You received this message because you are subscribed to the Google Groups "Django user

RE: What is the best combination of components when installing Django on Windows 10?

2016-12-28 Thread Matthew Pava
For what it’s worth, I use Windows 10 as my development environment. We use Windows Server 2012 in production with PostgreSQL and Apache 2.4 with modwsgi. We use Python 3.5 and Django 1.10. All of our tools are 64-bit. What’s really nice is that we have a method to print webpages directly

Re: What is the best combination of components when installing Django on Windows 10?

2016-12-28 Thread Kakar Nyori
Hi, I use windows, and I too was confused about these things. The best recommendation I got was to use *Vagrant, *and to this day I use it. *"Vagrant is a tool for building complete development environments."* Basically you select an environment like ubuntu OS (called vagrant box), and then

Re: What is the best combination of components when installing Django on Windows 10?

2016-12-28 Thread Avraham Serour
ell. Personally I > use PostgreSQL, gunicorn and nginx. > > On 26 Dec 2016, at 09:11, Varuna Seneviratna <varunasenevira...@gmail.com> > wrote: > > Hello, > What is the best combination of components to be used when > installing Django on Windows 10; By Com

Re: What is the best combination of components when installing Django on Windows 10?

2016-12-27 Thread roboslone
e best combination, I couldn't really tell. Personally I use PostgreSQL, gunicorn and nginx. > On 26 Dec 2016, at 09:11, Varuna Seneviratna <varunasenevira...@gmail.com> > wrote: > > Hello, > What is the best combination of components to be used when > installing Djang

Re: What is the best combination of components when installing Django on Windows 10?

2016-12-27 Thread Karen Tracey
On Tue, Dec 27, 2016 at 11:59 AM, bart wrote: > Don't u se Windows! > > Please stop answering like this, this is the 2nd time you've provided an answer of essentially "just don't do it" to a valid question. Windows may not be where you would ever choose to deploy something, but

Re: What is the best combination of components when installing Django on Windows 10?

2016-12-27 Thread bart
Don't u se Windows! Wysłano z telefonu Samsung Oorspronkelijk bericht Van: "Ali Rıza P. Bayrı" <alirizap.ba...@gmail.com> Datum: 27-12-16 15:54 (GMT+01:00) Aan: django-users@googlegroups.com Onderwerp: Re: What is the best combination of components when i

Re: What is the best combination of components when installing Django on Windows 10?

2016-12-27 Thread Ali Rıza P . Bayrı
django-users@googlegroups.com > Onderwerp: What is the best combination of components when installing > Django on Windows 10? > > Hello, > What is the best combination of components to be used when > installing Django on Windows 10; By Components, I mean the databas

Re: What is the best combination of components when installing Django on Windows 10?

2016-12-26 Thread bart
nation of components when installing Django on Windows 10? Hello,         What is the best combination of components to be used when installing Django on Windows 10; By Components, I mean the database and the web Server.  Thanks, Varuna -- You received this message because you are subs

Re: What is the best combination of components when installing Django on Windows 10?

2016-12-26 Thread Antonis Christofides
Christofides http://djangodeployment.com On 12/26/2016 08:11 AM, Varuna Seneviratna wrote: > Hello, > What is the best combination of components to be used when installing > Django on Windows 10; By Components, I mean the database and the web Server. > > > Thanks, Varuna &g

What is the best combination of components when installing Django on Windows 10?

2016-12-25 Thread Varuna Seneviratna
Hello, What is the best combination of components to be used when installing Django on Windows 10; By Components, I mean the database and the web Server. Thanks, Varuna -- You received this message because you are subscribed to the Google Groups "Django users" group. To u

Re: Installing django on python3.5.2. Debian

2016-12-14 Thread GMail
environments. > On 14 Dec 2016, at 10:51, Michal Petrucha <michal.petru...@konk.org> > wrote: > > On Tue, Dec 13, 2016 at 01:16:52PM -0800, mihail.poplav...@gmail.com wrote: >> Hello! I have a problem with installing Django on python 3.5.2, Debian >> I can't install

Re: Installing django on python3.5.2. Debian

2016-12-13 Thread Michal Petrucha
On Tue, Dec 13, 2016 at 01:16:52PM -0800, mihail.poplav...@gmail.com wrote: > Hello! I have a problem with installing Django on python 3.5.2, Debian > I can't install pip on this version of python. However, python 3.4 has pip. > How can I install pip in python 3.5.2? If you installed Py

Re: Installing django on python3.5.2. Debian

2016-12-13 Thread Antonis Christofides
fides http://djangodeployment.com On 12/13/2016 11:16 PM, mihail.poplav...@gmail.com wrote: Hello! I have a problem with installing Django on python 3.5.2, Debian I can't install pip on this version of python. However, python 3.4 has pip. How can I install pip in python 3.5.2? -- You received this message b

Installing django on python3.5.2. Debian

2016-12-13 Thread mihail . poplavkov
Hello! I have a problem with installing Django on python 3.5.2, Debian I can't install pip on this version of python. However, python 3.4 has pip. How can I install pip in python 3.5.2? -- You received this message because you are subscribed to the Google Groups "Django users&q

Re: error in installing django[argon2] -regarding

2016-08-30 Thread Ricardo Daniel Quiroga
argon2 required lidfi in ubuntu install manuall $ sudo apt-get install libffi5 libffi-dev 2016-08-28 13:43 GMT-03:00 sabari rangan : > Collecting argon2-cffi>=16.1.0; extra == "argon2" (from django[argon2]) > Downloading argon2_cffi-16.1.0.tar.gz (1.2MB) >

error in installing django[argon2] -regarding

2016-08-28 Thread sabari rangan
Collecting argon2-cffi>=16.1.0; extra == "argon2" (from django[argon2]) Downloading argon2_cffi-16.1.0.tar.gz (1.2MB) Complete output from command python setup.py egg_info: Package libffi was not found in the pkg-config search path. Perhaps you should add the directory containing

Daphne, twisted pip error when installing django channels

2016-07-24 Thread Petar Pilipovic
Hello, is there a chance that someone helps me with this question <http://stackoverflow.com/questions/38556363/daphne-twisted-pip-error-when-installing-django-channels> Thank you. -- You received this message because you are subscribed to the Google Groups "Django users" group

Re: Installing Django Problem.

2016-07-04 Thread Steve R Burrus
01 PM, Steve Burrus wrote: >>> >>>        well I uyet again am encountering problems with installing the >>>        Django >>>        server. I managed to get to this point "(stevesenv) >>>        C:\Users\sbur87\Desktop\steves_dir\stevesenv>" &g

Re: Installing Django Problem.

2016-07-04 Thread ludovic coues
esktop\steves_dir\stevesenv>" >>> >>> >>> It looks as though you have successfully got virtualenv working. >>> >>> Therefore the short answer to your question is ... >>> >>> (stevesenv) C:\Users\sbur87\Desktop\steves_dir\stevesenv>p

Re: Installing Django Problem.

2016-07-04 Thread Steve Burrus
teves_dir\stevesenv>" >> >> >> It looks as though you have successfully got virtualenv working. >> >> Therefore the short answer to your question is ... >> >> (stevesenv) C:\Users\sbur87\Desktop\steves_dir\stevesenv>pip install >>

Re: Installing Django Problem.

2016-07-04 Thread Hildeberto Mendonça
ves_dir\stevesenv>" >> >> >> It looks as though you have successfully got virtualenv working. >> >> Therefore the short answer to your question is ... >> >> (stevesenv) C:\Users\sbur87\Desktop\steves_dir\stevesenv>pip install >>

Re: Installing Django Problem.

2016-07-03 Thread Mike Dewhirst
C:\Users\sbur87\Desktop\steves_dir\stevesenv>pip install django Cheers Mike but where exactly do I go from here in installing django? Man y thanx to anyone who can help me with this "trying" problem of mine. -- You r

Re: Installing Django Problem.

2016-07-03 Thread Steve Burrus
> > > It looks as though you have successfully got virtualenv working. > > Therefore the short answer to your question is ... > > (stevesenv) C:\Users\sbur87\Desktop\steves_dir\stevesenv>pip install django > > Cheers > > Mike > > > but where exactly do I go

Re: Installing Django Problem.

2016-07-03 Thread Mike Dewhirst
g. Therefore the short answer to your question is ... (stevesenv) C:\Users\sbur87\Desktop\steves_dir\stevesenv>pip install django Cheers Mike but where exactly do I go from here in installing django? Man y thanx to anyone who can help me with this "trying" problem of mine. -- You rec

Installing Django Problem.

2016-07-03 Thread Steve Burrus
well I uyet again am encountering problems with installing the Django server. I managed to get to this point "(stevesenv) C:\Users\sbur87\Desktop\steves_dir\stevesenv>" but where exactly do I go from here in installing django? Man y thanx to anyone who can help me with this &qu

Installing Django and Running with Canopy

2016-03-10 Thread jda0017
Hello All, I am new to this group but I need some help installing and running Django on a mac. I prefer to use Enthought's Canopy as my Python environment. Can anyone help me out with this? -- You received this message because you are subscribed to the Google Groups "Django users" group. To

Re: installing django scripts on a web server

2015-12-18 Thread Vernon D. Cole
On Friday, December 18, 2015 at 4:55:16 AM UTC-7, maringire ringaz wrote: > > How do i install django-cms(or any other web app) on xampp or runserver > using pycharm > First, I would say that xampp is a non-starter, because it does not have support for Python. [besides that, I prefer nginx

installing django scripts on a web server

2015-12-18 Thread maringire ringaz
How do i install django-cms(or any other web app) on xampp or runserver using pycharm -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: SyntaxError: invalid syntax when installing Django from pip

2015-12-09 Thread knbk
This is an issue with setuptools 5.5.x. It is safe to ignore, or you can upgrade setuptools by upgrading pip: pip install -U pip On Wednesday, December 9, 2015 at 11:47:42 AM UTC+1, Chethan Kumar R wrote: > > Hi, all > > Im new to django, just now installed django through pip and got below >

SyntaxError: invalid syntax when installing Django from pip

2015-12-09 Thread Chethan Kumar R
Hi, all Im new to django, just now installed django through pip and got below syntax error, so can anyone tell me is that fine or need to correct that. Thanks in advance. sudo pip install Django Downloading/unpacking Django Downloading Django-1.9-py2.py3-none-any.whl (6.6MB): 6.6MB

Re: Installing Django and Python 3.4 on a freshly registered Debian VPS

2015-07-11 Thread Marek Turnovec
> > > Just searching the net I found: > http://www.extellisys.com/articles/python-on-debian-wheezy . It has > information about how to install python 3.4 on If possible switch to an > ubuntu server instead, because then you will get python 3.4 as standard. > > I think that it's not necessary.

Re: Installing Django [Again]

2015-07-09 Thread gahuber
Burrus wrote: > *I know thrat I have appealed for help about this before but I am having > problems aGAIN with installing Django. Well I was able to run "pip install > django" okay but then I don't know where to go from there! Here is where I > am now : (myenv)C:\User

Re: Installing Django [Again]

2015-07-09 Thread Fred Chevitarese
escreveu: > *I know thrat I have appealed for help about this before but I am having > problems aGAIN with installing Django. Well I was able to run "pip install > django" okay but then I don't know where to go from there! Here is where I > am now : (myenv)C:\Users\SteveB\Des

Installing Django [Again]

2015-07-09 Thread Steve Burrus
*I know thrat I have appealed for help about this before but I am having problems aGAIN with installing Django. Well I was able to run "pip install django" okay but then I don't know where to go from there! Here is where I am now : (myenv)C:\Users\SteveB\Desktop\myenv>* --

Re: Installing Django and Python 3.4 on a freshly registered Debian VPS

2015-07-07 Thread Linux4Bene
Op Sat, 04 Jul 2015 19:39:00 +0200, schreef Andreas Kuhne: > Hi, > > Just searching the net I found: > http://www.extellisys.com/articles/python-on-debian-wheezy . It has > information about how to install python 3.4 on debian. However I haven't > used Debian myself (we use ubuntu on our

Re: Installing Django and Python 3.4 on a freshly registered Debian VPS

2015-07-04 Thread Andreas Kuhne
2015-07-04 14:19 GMT+02:00 Christian Kleineidam < christian.kleinei...@gmail.com>: > I want to install Django and Python 3.4 on a freshly registered Debian > server. > What are the steps I have to take given that I want to use Python 3.4 and > not the debian default of 2.7? > I expect I also need

Installing Django and Python 3.4 on a freshly registered Debian VPS

2015-07-04 Thread Christian Kleineidam
I want to install Django and Python 3.4 on a freshly registered Debian server. What are the steps I have to take given that I want to use Python 3.4 and not the debian default of 2.7? I expect I also need to install Apache, is that right? Can you point me to a good tutorial that explains all

installing django

2015-04-03 Thread Karol L
I found many topic about this but still don't solve the problem. I installed django and when i try to make a project: -- You received this message because you are subscribed to the Google Groups "Django users" group. To

Re: Installing django on red hat linux box

2014-10-23 Thread Thomas G Lockhart
On Oct 22, 2014, at 9:57 AM, robert brook wrote: > I have python 3.3. If you are running RHEL6, python 2.6 is supported through yum etc. You will need to do your own installation if you want a more recent version, but afaik you will not need to. 2.6 is

Re: Installing django on red hat linux box

2014-10-22 Thread Kelvin Wong
Take a look at the Software Collections (ver 1.1 works on RHEL 7) http://developerblog.redhat.com/2013/01/28/software-collections-on-red-hat-enterprise-linux/ $ sudo yum install python33-python-devel $ scl enable python33 bash You can then install everything locally in your application user's

Re: Installing django on red hat linux box

2014-10-22 Thread Pat Claffey
One final suggestion... If you are using python3.3 then pip may be called pip3.3 You could try "which python3.3" or "which python" (if python points to python3.3). This should give you path to python executable directory. If you look there you may be lucky and see a pip executable -

Re: Installing django on red hat linux box

2014-10-22 Thread robert brook
I am a contractor in a large organziation. They must have everything locked down. I downloaded get-pip.py and got errors that seemed to be proxy, firewall security issues, that is why I fell back to implementing through setup.py and ran into the header issues. Thanks On Wednesday, October

Re: Installing django on red hat linux box

2014-10-22 Thread robert brook
I have python 3.3. Had to coerce red hat to do allow the install 3.3. Must have been a stripped down version. version 6 came with python 2.6 installed. Must be a stripped down version as pip does not come with python 3.3 I believe I need the package , python3.3-dev, to get the headers to

Re: Installing django on red hat linux box

2014-10-22 Thread Pat Claffey
once I got pip sorted out it was really easy install django (just pip install django) - so advise is to get pip working. You will need it for other python packages also. On Wednesday, October 22, 2014 5:12:10 PM UTC+1, robert brook wrote: > > > I have alot of experience installing packages on

Re: Installing django on red hat linux box

2014-10-22 Thread robert brook
I have installed a virtualenv on my local machine to do the development. On the development web server using a virutal environment is not really important. The packages that I am interested in are not available through yum. Trying to install the packages locally displays header errors. Any

Re: Installing django on red hat linux box

2014-10-22 Thread Pat Claffey
Hi, I assume you have python installed successfully. What version? If you install python 3.4 then pip should install automatically (unless 3.4. is a second python install in which case pip does not install) You should be able to see the python (and pip) executables in /usr/bin or

  1   2   3   4   5   >