Re: cant import views

2020-03-17 Thread Jatin Agrawal
can you please share your project directory structure.

On Tuesday, March 17, 2020 at 11:33:10 PM UTC+5:30, דביר חומרי wrote:
>
> i was following the toturial and i could'nt find why this error is accure.
> polls/urls.py'
>
> from django.urls import path
>
> from . import views
>
> urlpatterns = [
> path('', views.index, name='index'),
> ]
>
>
> and got this error:
>
> Traceback (most recent call last):
>   File "c:\Users\..polls\urls.py", line 20, in 
> from . import views
> ImportError: cannot import name 'views'
>
> p.s. views.py is in the same directory as urls.py
>
> ¶ \
>
>

-- 
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 visit 
https://groups.google.com/d/msgid/django-users/a53d067e-3cf2-41b3-b075-d4c9748a8f7d%40googlegroups.com.


Re: VIRTUAL ENVIRONMENT

2020-04-10 Thread Jatin Agrawal
It's a good development practice to work on a virtual environment.

Virtual environments are completely different from each, they are just 
sharing the common pc, else they are totally different. The main use of 
virtual environments is to prevent projects from using the same versions of 
packages installed. Sometimes you may want to use older version of a 
package for a project and the newer version of the same package for a 
different project.
You can consider this world as a virtual environment and we "Homosapiens" 
are a package with different versions.

*Question:* Why would you want to and should use a virtual environment 
while installing Django or any other package that is required for a project?

*Answer:* Suppose you are creating two projects and you are required to use 
different versions of Django for both projects, then how would you do it? 
There come virtual environments for your help. You can do this by creating 
two virtual environments and install different versions of Django as 
required.


I hope I have answered your question properly to clear your doubts.


On Saturday, April 11, 2020 at 3:01:22 AM UTC+5:30, Philip Onyeachonam 
wrote:
>
> is it   compulsory that i isolate the virtual environment when im 
> installing Django
>  
>

-- 
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 visit 
https://groups.google.com/d/msgid/django-users/b8d42252-aa90-45a8-91c7-25d578c986c7%40googlegroups.com.


Re: In pycharm errror

2020-04-10 Thread Jatin Agrawal
Can you please post an image of your directory structure? Maybe then I or 
someone else can help you in a better way.


On Thursday, April 9, 2020 at 7:55:20 PM UTC+5:30, tejasri mamidi wrote:
>
> While executing py manage.py runserver .. 
> Terminal showing this file will not found why..

-- 
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 visit 
https://groups.google.com/d/msgid/django-users/2af77eef-71f4-4716-96be-72b3871906ec%40googlegroups.com.


Re: Django Testing

2020-04-10 Thread Jatin Agrawal
The main reason behind learning about Testing is to check if the views that 
we have written for, are generating the expected results or not. Suppose 
you are writing an APIView to get a list of something, then you should 
write a testcase to check whether that APIView is giving you the result 
that you are expecting or not.

Suppose a company has manufactured a laptop and then they test it to check 
if the new laptop design is working as expected or not. In the same way, if 
you are doing any development work, be it backend development or frontend 
development, you are supposed to and must write test cases to check if the 
feature that you have just developed is giving the expected response or not.


I hope, now, the basic idea of testing is clear to you.

On Tuesday, March 31, 2020 at 8:03:53 PM UTC+5:30, Abrar Ahmad wrote:
>
> Hello Sir 
> I have trouble in learnig Testing tutorial of Djanog Documentation.
> Can any one tell me what is the main concept of learnign test and how can 
> we learn it in easiest way.
> I am waiting for reply
>
>

-- 
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 visit 
https://groups.google.com/d/msgid/django-users/0ded0bda-b251-4fc3-bff3-dc1a2e147f76%40googlegroups.com.


Re: ./manage makemigrations and ./manage migrate don't work

2020-06-20 Thread Jatin Agrawal
The reason for this is, in class Meta, you have set, managed=False. That's 
causing the issue. 

When you set managed=False, then there is no table creation happens for 
that model when you run migrate command after make migrations. So, if you 
want a table to be created for that model, just remove managed=False and it 
should work fine.

Refer the django docs for more details: 
https://docs.djangoproject.com/en/2.2/ref/models/options/

On Friday, June 19, 2020 at 12:10:57 PM UTC+5:30, Mohsen Pahlevanzadeh 
wrote:
>
> I run :
> ./manage makemigrations and ./manage migrate with the following output:
>
> """
> (django_sql) mohsen@debian:~/Documents/django_sql/django_sql$ ./manage.py 
> makemigrations
> Migrations for 'sql':
>   
> sql/migrations/0006_customertbl_employeepaytbl_employeetbl_orderstbl_productstbl.py
> - Create model CustomerTbl
> - Create model EmployeeTbl
> - Create model OrdersTbl
> - Create model ProductsTbl
> - Create model EmployeePayTbl
> (django_sql) mohsen@debian:~/Documents/django_sql/django_sql$ ./manage.py 
> migrate
> Operations to perform:
>   Apply all migrations: admin, auth, contenttypes, sessions, sql
> Running migrations:
>   Applying 
> sql.0006_customertbl_employeepaytbl_employeetbl_orderstbl_productstbl... OK
>
> 
> My models.py is:
>
>
> """
> from django.db import models
>
> # This is an auto-generated Django model module.
> # You'll have to do the following manually to clean this up:
> #   * Rearrange models' order
> #   * Make sure each model has one field with primary_key=True
> #   * Make sure each ForeignKey and OneToOneField has `on_delete` set to 
> the desired behavior
> #   * Remove `managed = False` lines if you wish to allow Django to 
> create, modify, and delete the table
> # Feel free to rename the models, but don't rename db_table values or 
> field names.
>
>
> class CustomerTbl(models.Model):
> cust_id = models.CharField(db_column='CUST_ID', primary_key=True, 
> max_length=10)  # Field name made lowercase.
> cust_name = models.CharField(db_column='CUST_NAME', max_length=30)  # 
> Field name made lowercase.
> cust_address = models.CharField(db_column='CUST_ADDRESS', 
> max_length=20)  # Field name made lowercase.
> cust_city = models.CharField(db_column='CUST_CITY', max_length=15)  # 
> Field name made lowercase.
> cust_state = models.CharField(db_column='CUST_STATE', max_length=2)  # 
> Field name made lowercase.
> cust_zip = models.IntegerField(db_column='CUST_ZIP')  # Field name 
> made lowercase.
> cust_phone = models.CharField(db_column='CUST_PHONE', max_length=10, 
> blank=True, null=True)  # Field name made lowercase.
> cust_fax = models.CharField(db_column='CUST_FAX', max_length=10, 
> blank=True, null=True)  # Field name made lowercase.
>
> class Meta:
> managed = False
> db_table = 'CUSTOMER_TBL'
>
>
> class EmployeePayTbl(models.Model):
> emp = models.OneToOneField('EmployeeTbl', models.DO_NOTHING, 
> db_column='EMP_ID', primary_key=True)  # Field name made lowercase.
> position = models.CharField(db_column='POSITION', max_length=15)  # 
> Field name made lowercase.
> date_hire = models.DateField(db_column='DATE_HIRE', blank=True, 
> null=True)  # Field name made lowercase.
> pay_rate = models.DecimalField(db_column='PAY_RATE', max_digits=4, 
> decimal_places=2, blank=True, null=True)  # Field name made lowercase.
> date_last_raise = models.DateField(db_column='DATE_LAST_RAISE', 
> blank=True, null=True)  # Field name made lowercase.
> salary = models.DecimalField(db_column='SALARY', max_digits=8, 
> decimal_places=2, blank=True, null=True)  # Field name made lowercase.
> bonus = models.DecimalField(db_column='BONUS', max_digits=6, 
> decimal_places=2, blank=True, null=True)  # Field name made lowercase.
>
> class Meta:
> managed = False
> db_table = 'EMPLOYEE_PAY_TBL'
>
>
> class EmployeeTbl(models.Model):
> emp_id = models.CharField(db_column='EMP_ID', primary_key=True, 
> max_length=9)  # Field name made lowercase.
> last_name = models.CharField(db_column='LAST_NAME', max_length=15)  # 
> Field name made lowercase.
> first_name = models.CharField(db_column='FIRST_NAME', max_length=15)  
> # Field name made lowercase.
> middle_name = models.CharField(db_column='MIDDLE_NAME', max_length=15, 
> blank=True, null=True)  # Field name made lowercase.
> address = models.CharField(db_column='ADDRESS', max_length=30)  # 
> Field name made lowercase.
> city = models.CharField(db_column='CITY', max_length=15)  # Field name 
> made lowercase.
> state = models.CharField(db_column='STATE', max_length=2)  # Field 
> name made lowercase.
>

Re: help

2020-06-22 Thread Jatin Agrawal
Are you using postgres?

On Monday, June 22, 2020 at 8:34:55 PM UTC+5:30, Peter Kirieny wrote:
>
> can someone help with this please
>
> django.db.utils.OperationalError: FATAL:  password authentication failed 
> for user "Admin"
>

-- 
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 visit 
https://groups.google.com/d/msgid/django-users/cea920f9-7c3d-4eb7-89fc-c61135652807o%40googlegroups.com.


Re: Retrieve Data in DataBaeses

2020-06-22 Thread Jatin Agrawal
First, you need to understand the basics of Django. Follow this tutorial to 
get the basics, make sure you watch every video and practice what's taught 
in it.

link: https://www.codingforentrepreneurs.com/projects/try-django-111

On Sunday, June 21, 2020 at 12:43:04 AM UTC+5:30, waqar khan wrote:
>
> I have recently start in Django
> I have create a simple project Registration Form in save database  
> Mysqlite3,
> But, how to retrieve data database show in html file table formet ,
>
> Please any guide me! 
>
>

-- 
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 visit 
https://groups.google.com/d/msgid/django-users/4d690158-224e-42af-9c7e-a9d214904d7eo%40googlegroups.com.


Re: how to fetch data into a template (table)

2020-06-22 Thread Jatin Agrawal
Where do you want to display the data? in HTML template?

On Saturday, June 20, 2020 at 9:11:57 PM UTC+5:30, Faith Mwai wrote:
>
> Am having a challenge of displaying data into my template table, the 
> function is;
>
> def customers(request):
> if request.method == 'POST':
> accountno = request.POST['accountno']
> id= request.POST['id']
> Mobilenumber = request.POST['Mobilenumber']
> cursor = con.cursor()
> querystring = ("Select Messages, amount, date from Accounts where 
> accountno = 'accountno' or Mobilenumber = 'Mobilenumber' ")
>
> cursor.execute(querystring)
>
> rows = cursor.fetchall()
> context = {'querystring': querystring}
> con.close()
> if cursor.rowcount == 0:
> return render(request,'kplcapp/customers.html', context)
> else:
> rows = cursor.fetchall()
> return render('kplcapp/customers.html', context)
> return render(request, 'kplcapp/customers.html', context)
>
> if 'print' in request.form:
> df = pd.DataFrame(result)
> df.to_excel(r"C:\Users\Public\Documents\data3.xlsx")
> else:
> return render(request, 'kplcapp/customers.html', context)
>
>

-- 
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 visit 
https://groups.google.com/d/msgid/django-users/4f27fc06-7a11-4ae2-89ee-8fe431f68e23o%40googlegroups.com.


Re: User.objects.all() only returns username

2020-07-03 Thread Jatin Agrawal
When we do, User.objects.all(), it returns a queryset which will show you 
all the objects that are present in the database for the model. So, when 
you print that queryset, it just displays the username of the user.

This is also because the def __str__ method of the User model must be 
returning the username. So, if you want to see all the fields of, check out 
this link: 
https://stackoverflow.com/questions/3106295/django-get-list-of-model-fields

On Friday, July 3, 2020 at 12:05:10 PM UTC+5:30, Mohsen Pahlevanzadeh wrote:
>
> When  I use select * from auth_user; I get the following result:
> 
>
> ++++--+--++---+--+--+---++
> | id | 
> password  
>  
> | last_login | is_superuser | username | first_name | last_name | 
> email| is_staff | is_active | 
> date_joined|
>
> ++++--+--++---+--+--+---++
> |  1 | 
> pbkdf2_sha256$18$8waw72qXD5IL$nDgySLTPAt3uLNnUMhzpPVodbkGYtYJJsmBilA7X6g8=
>  
> | NULL   |1 | mohsen   ||   | 
> moh...@pahlevanzadeh.net  |1 | 1 | 
> 2020-07-03 05:57:34.351606 |
> |  2 | 
> pbkdf2_sha256$18$NNVfAk9Z98Uz$5m6HPp42ytlZeyLiy8jsYgUKjREu8WbDeLhAb7dFi0M=
>  
> | NULL   |1 | ali  ||   | 
> a...@example.com |1 | 1 | 
> 2020-07-03 05:58:09.429542 |
>
> ++++--+--++---+--+--+---++
> 2 rows in set (0.000 sec)
>
> #
>
> And When I print(User.objects.all()) , I get the following result:
> #
> , ]>
> [03/Jul/2020 05:58:33] "GET /sql/ HTTP/1.1" 200 4
> ##
>
> Why I can't see all of my fields?
>

-- 
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 visit 
https://groups.google.com/d/msgid/django-users/a4372a4b-d02d-4859-b34c-8e3fcd31b24eo%40googlegroups.com.


Re: RUNSERVER SERIOUS PROBLEM! Please help me pls

2020-08-04 Thread Jatin Agrawal
It seems like your directoy structure is not proper after you moved some 
files/folders. So, if you can send the screenshot of your directory 
structure, it might be helpful for others to help you.

On Tuesday, August 4, 2020 at 10:12:32 AM UTC+5:30, Phan Nguyen wrote:
>
> *So I was be able to work with Django very well the past weeks. But 
> certainly, I manually moved a 'src' folder(contain manage.py) which is 
> originally in a Dev folder. And it turns out to be not working anymore.Now, 
> all the admin site and other urls path cannot be run. I am using Mac OS. 
> (error picture attached) please tell me if you need more screenshot to 
> clarify. I appreciate any help. Thank you so much!*
>
> [image: Screen Shot 2020-08-04 at 11.36.30.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 visit 
https://groups.google.com/d/msgid/django-users/f0ba9e64-10e3-47c4-9f06-b3a41cdbcd51o%40googlegroups.com.


XYZModel matching query does not exist

2020-09-15 Thread Jatin Agrawal
I am facing some issues while fixtures loading while running testcases. The 
error is 

app_name.models.company.CompanyModel.DoesNotExist: Problem installing 
fixture '/Users/xyz/Documents/temp/testdir/random/fixtures/product.json': 
XYZModel matching query does not exist.

1. Earlier, there was no issue while loading fixtures.
2. Testcases were running fine.
3. Not all testcases are breaking.
4. Only some testcases are throwing this error.
5. Fixture of XYZModel is valid and tried and tested by using the loaddata 
command.
6. FK of XYZModel instance in product.json is also valid.


Stuck with this problem last few hours.


Any help or suggestions would be appreciated.


Thanks
Jatin Agrawal

-- 
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 visit 
https://groups.google.com/d/msgid/django-users/73b44bd5-91b1-4105-ba2a-fe65110f06f2n%40googlegroups.com.


Re: installation of django

2020-02-11 Thread Jatin Agrawal
you must first create a virtual environment and activate it and then
install django in that virtual environment. search for how to create a
virtual environment for django projects on the internet.

On Tue, Feb 11, 2020 at 9:43 PM paarull shukla 
wrote:

> heloo guys i m not able to install django please help me it .i m facing
> issue last 10 days . i m getting collecting django after tht installation
> not started
>
> --
> 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 visit
> https://groups.google.com/d/msgid/django-users/879c4e25-5ff9-4858-bf6d-b794bef3aed7%40googlegroups.com
> 
> .
>


-- 
+91 9810916435

-- 
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 visit 
https://groups.google.com/d/msgid/django-users/CABWk0ReWd0NXzHUO9%3Dt_wWOo-ajU2UJ%2BKGMM6Tk7-G8kiLPWcg%40mail.gmail.com.


Re: installation of django

2020-02-11 Thread Jatin Agrawal
read the django documentation for installing it.

https://docs.djangoproject.com/en/3.0/topics/install/

On Tue, Feb 11, 2020 at 9:51 PM paarull shukla 
wrote:

> No. Not an error but getting collecting django. After that installation
> didn't start
>
> On Tue, 11 Feb, 2020, 9:49 PM Irfan Khan,  wrote:
>
>> Are you getting any error messages?
>>
>> On Tue, 11 Feb 2020 at 9:43 PM, paarull shukla <
>> shukla.paarull...@gmail.com> wrote:
>>
>>> heloo guys i m not able to install django please help me it .i m facing
>>> issue last 10 days . i m getting collecting django after tht installation
>>> not started
>>>
>>> --
>>> 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 visit
>>> https://groups.google.com/d/msgid/django-users/879c4e25-5ff9-4858-bf6d-b794bef3aed7%40googlegroups.com
>>> 
>>> .
>>>
>> --
>> 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 visit
>> https://groups.google.com/d/msgid/django-users/CALKGVioTRShH5x6UdqwyT2eCY3UVQ%2BZvP4%2BVdaFE0_H6np5mMg%40mail.gmail.com
>> 
>> .
>>
> --
> 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 visit
> https://groups.google.com/d/msgid/django-users/CACLQzseiB2H%2BLiHpb1itOnTVORctS6LCXtyv9MMoqiq5bqVUEA%40mail.gmail.com
> 
> .
>


-- 
+91 9810916435

-- 
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 visit 
https://groups.google.com/d/msgid/django-users/CABWk0Rc5Fm%3DS16kvqui6ASkgGh_Au7VCREnft-fMFqAN1BQ%2BoQ%40mail.gmail.com.


Re: installation of django

2020-02-11 Thread Jatin Agrawal
you can install some different version of django also instead of 3.0

On Tue, Feb 11, 2020 at 9:53 PM Jatin Agrawal  wrote:

> read the django documentation for installing it.
>
> https://docs.djangoproject.com/en/3.0/topics/install/
>
> On Tue, Feb 11, 2020 at 9:51 PM paarull shukla <
> shukla.paarull...@gmail.com> wrote:
>
>> No. Not an error but getting collecting django. After that installation
>> didn't start
>>
>> On Tue, 11 Feb, 2020, 9:49 PM Irfan Khan,  wrote:
>>
>>> Are you getting any error messages?
>>>
>>> On Tue, 11 Feb 2020 at 9:43 PM, paarull shukla <
>>> shukla.paarull...@gmail.com> wrote:
>>>
>>>> heloo guys i m not able to install django please help me it .i m facing
>>>> issue last 10 days . i m getting collecting django after tht installation
>>>> not started
>>>>
>>>> --
>>>> 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 visit
>>>> https://groups.google.com/d/msgid/django-users/879c4e25-5ff9-4858-bf6d-b794bef3aed7%40googlegroups.com
>>>> <https://groups.google.com/d/msgid/django-users/879c4e25-5ff9-4858-bf6d-b794bef3aed7%40googlegroups.com?utm_medium=email&utm_source=footer>
>>>> .
>>>>
>>> --
>>> 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 visit
>>> https://groups.google.com/d/msgid/django-users/CALKGVioTRShH5x6UdqwyT2eCY3UVQ%2BZvP4%2BVdaFE0_H6np5mMg%40mail.gmail.com
>>> <https://groups.google.com/d/msgid/django-users/CALKGVioTRShH5x6UdqwyT2eCY3UVQ%2BZvP4%2BVdaFE0_H6np5mMg%40mail.gmail.com?utm_medium=email&utm_source=footer>
>>> .
>>>
>> --
>> 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 visit
>> https://groups.google.com/d/msgid/django-users/CACLQzseiB2H%2BLiHpb1itOnTVORctS6LCXtyv9MMoqiq5bqVUEA%40mail.gmail.com
>> <https://groups.google.com/d/msgid/django-users/CACLQzseiB2H%2BLiHpb1itOnTVORctS6LCXtyv9MMoqiq5bqVUEA%40mail.gmail.com?utm_medium=email&utm_source=footer>
>> .
>>
>
>
> --
> +91 9810916435
>


-- 
+91 9810916435

-- 
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 visit 
https://groups.google.com/d/msgid/django-users/CABWk0ReSy5sgTbTwzJ2Q992DrVnUBpsu%3DVs1wyrX8do7W5e%2B%3Dg%40mail.gmail.com.


Re: installation of django

2020-02-11 Thread Jatin Agrawal
you must first create a virtual environment and activate it and then 
install django in that virtual environment. search for how to create a 
virtual environment for django projects on the internet.

On Tuesday, February 11, 2020 at 9:44:28 PM UTC+5:30, paarull shukla wrote:
>
> heloo guys i m not able to install django please help me it .i m facing 
> issue last 10 days . i m getting collecting django after tht installation 
> not started
>

-- 
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 visit 
https://groups.google.com/d/msgid/django-users/36568b42-477f-4557-a653-ebc2b18931c0%40googlegroups.com.


Re: installation of django

2020-02-11 Thread Jatin Agrawal
https://www.codingforentrepreneurs.com/blog/install-python-django-on-windows

visit thig website and try to follow the instructions given on it.

On Tuesday, February 11, 2020 at 9:44:28 PM UTC+5:30, paarull shukla wrote:
>
> heloo guys i m not able to install django please help me it .i m facing 
> issue last 10 days . i m getting collecting django after tht installation 
> not started
>

-- 
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 visit 
https://groups.google.com/d/msgid/django-users/0b32e8a0-1bb0-471c-bbdf-d1683afe9174%40googlegroups.com.