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 also should install virtualenvwrapper it makes virtualenv handling even more pleasant.

On 31.08.2016 19:19, 'Abraham Varricatt' via Django users wrote:
It's nice that you are on Ubuntu. :) Here is a quick and dirty way to get up to speed, (going to assume you will use python3)

# Installing virtualenv globally
|
$ sudo apt-getupdate
$ sudo apt-getinstall python3-pip
$ sudo pip3 install virtualenv
|

Once you have that done, navigate to an empty directory to create a new virtualenv folder, activate it, and install django!

|
$ 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
$
|



Yours,
Abraham V.








On Wednesday, 31 August 2016 17:47:18 UTC+5:30, jsroyal wrote:

    Hello guys,
        I am newbie in Django and started learning with Standard
    Documentation version: *1.10.
    I *already Install Django 1.10 and Python 3.4 in Linux Ubuntu
    15.04 But in first phage I got some problem
    I type command

    django-admin startproject mysite

    error:
    Cannot find installed version of python-django or python3-django
    Need some help to get out.
    Stay strong
    JS

--
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 [email protected] <mailto:[email protected]>. To post to this group, send email to [email protected] <mailto:[email protected]>.
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 <https://groups.google.com/d/msgid/django-users/28f0e8f0-9183-42f9-97fd-365286f432d9%40googlegroups.com?utm_medium=email&utm_source=footer>.
For more options, visit https://groups.google.com/d/optout.

--
Jani Tiainen

--
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 [email protected].
To post to this group, send email to [email protected].
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/8542efd7-f4d3-9062-8a0f-4904af136038%40gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to