django-admin startproject mysiteerror:
--
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...@googlegroups.com.
To post to this group, send email to django...@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/2fc42b55-e9da-46cc-8762-06265deb6b43%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
sudo apt-get install python-django-common
Through this command.
--
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...@googlegroups.com.
To post to this group, send email to django...@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/dacc07fe-48d4-491e-8757-aa167fd379f7%40googlegroups.com.
$ sudo apt-get update
$ sudo apt-get install python3-pip
$ sudo pip3 install virtualenv
$ mkdir test
$ cd test
$ virtualenv --python=python3 VENV
$ source VENV/bin/activate
(VENV)$ pip install django
(VENV)$ django-admin startproject mysite
...
(VENV)$ deactivate # to turn off the virutualenv, or just close the terminal session
$
Hi,
One thing to note here: NEVER use pip with sudo. You may
accidentally break packages from your distribution and easily end
up in the case that you whole system is broken.
--
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...@googlegroups.com.
To post to this group, send email to django...@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/28f0e8f0-9183-42f9-97fd-365286f432d9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
-- Jani Tiainen