Re: I can't start new project

2012-08-22 Thread rafi r
thanks so much this helped me tons!!!
On Tuesday, December 27, 2011 9:27:06 AM UTC-5, Andre Terra (airstrike) wrote:
> My bet is that you're using Windows.
> 
> Open the Registry Editor (hit Winkey+R, "regedit" (no quotes), hit enter)
> 
> ---
> 
> Go to HKEY_CLASSES_ROOT\Applications\python.exe\shell\open\command
> 
> 
> and check that it looks somewhat like '"PYDIR\\python.exe" "%1" %*'
>  
> If you're missing the final  %*, it won't work.
> 
> 
> 
> ---
> 
> A different, one-time solution is to type the full paths in your command-line:
> 
> 
> 
> 
> C:\Python27\python.exe
> C:\path\to\django-admin.py startproject foobar
> 
> 
> 
> Also google for virtualenv and start using it!
> 
> 
> Cheers,
> AT
> 
> 
> 
> On Tue, Dec 27, 2011 at 12:01 PM, Varrant  wrote:
> 
> 
> Hello,
> 
> 
> 
> I have installed python 2.7 and Django 1.3.1, but when I type:
> 
> 
> 
> "django-admin.py startproject project"
> 
> 
> 
> I receive only something like 'help' for that command
> 
> 
> 
> How can i fix it?
> 
> 
> 
> I already tried reinstalling Python and Django...
> 
> 
> 
> --
> 
> You received this message because you are subscribed to the Google Groups 
> "Django users" group.
> 
> To post to this group, send email to django...@googlegroups.com.
> 
> To unsubscribe from this group, send email to 
> django-users...@googlegroups.com.
> 
> For more options, visit this group at 
> http://groups.google.com/group/django-users?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/B4K_7Ov9MIoJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: I can't start new project

2011-12-27 Thread yati sagade
AT,
and they say hackers belong only to Linux :P Good job!

On Tue, Dec 27, 2011 at 8:37 PM, Andre Terra  wrote:

> It's not just %, it's %* (notice the asterisk).
>
> I just tried changing the value back and forth here and it worked as
> expected.
>
>
> Cheers,
> AT
>
>
> On Tue, Dec 27, 2011 at 12:44 PM, Varrant wrote:
>
>> In registry % was missing, but nothing changed.
>>
>> "One time solution work's nice :D
>>
>> I'll lookfor virtualenv
>>
>> Thanks for help :)
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To post to this group, send email to django-users@googlegroups.com.
>> To unsubscribe from this group, send email to
>> django-users+unsubscr...@googlegroups.com.
>> For more options, visit this group at
>> http://groups.google.com/group/django-users?hl=en.
>>
>>
>  --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: I can't start new project

2011-12-27 Thread Andre Terra
It's not just %, it's %* (notice the asterisk).

I just tried changing the value back and forth here and it worked as
expected.


Cheers,
AT

On Tue, Dec 27, 2011 at 12:44 PM, Varrant  wrote:

> In registry % was missing, but nothing changed.
>
> "One time solution work's nice :D
>
> I'll lookfor virtualenv
>
> Thanks for help :)
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: I can't start new project

2011-12-27 Thread Varrant
In registry % was missing, but nothing changed.

"One time solution work's nice :D

I'll lookfor virtualenv

Thanks for help :)

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: I can't start new project

2011-12-27 Thread Varrant
Windows 7 64

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: I can't start new project

2011-12-27 Thread Andre Terra
My bet is that you're using Windows.

Open the Registry Editor (hit Winkey+R, "regedit" (no quotes), hit enter)

---

Go to *HKEY_CLASSES_ROOT\Applications\python.exe\shell\open\command*
and check that it looks somewhat like '"PYDIR\\python.exe" "%1" %*'

If you're missing the final * %**, it won't work.

---

A different, one-time solution is to type the full paths in your
command-line:

C:\Python27\python.exe C:\path\to\django-admin.py startproject foobar


Also google for virtualenv and start using it!


Cheers,
AT


On Tue, Dec 27, 2011 at 12:01 PM, Varrant  wrote:

> Hello,
>
> I have installed python 2.7 and Django 1.3.1, but when I type:
>
> "django-admin.py startproject project"
>
> I receive only something like 'help' for that command
>
> How can i fix it?
>
> I already tried reinstalling Python and Django...
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: I can't start new project

2011-12-27 Thread Hassan
What is your Operating System ?

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



I can't start new project

2011-12-27 Thread Varrant
Hello,

I have installed python 2.7 and Django 1.3.1, but when I type:

"django-admin.py startproject project"

I receive only something like 'help' for that command

How can i fix it?

I already tried reinstalling Python and Django...

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.