Re: problem in activating virtual environment in Django with ". \Scripts\activate" command

2019-01-18 Thread 'hadi tedi' via Django users
I had similar problem before.

try 
"cd " until you reach the directory of "scripts" then type "activate".
same thing to deactivate.

 Hadi



On Friday, 18 January 2019 12:46:03 UTC, Django Geek Aditya wrote:
>
> .\scripts\activate.bat is also not working
>>
>> THE SHELL OUTPUT IS -> 
> PS E:\todo> .\Scripts\activate.bat
> .\Scripts\activate.bat : The term '.\Scripts\activate.bat' is not 
> recognized as the name of a cmdlet, function, script
> file, or operable program. Check the spelling of the name, or if a path 
> was included, verify that the path is correct
> and try again.
> At line:1 char:1
> + .\Scripts\activate.bat
> + ~~
> + CategoryInfo  : ObjectNotFound: 
> (.\Scripts\activate.bat:String) [], CommandNotFoundException
> + FullyQualifiedErrorId : CommandNotFoundException
>
> PS E:\todo> 
>

-- 
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 group, send email to django-users@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/f2941ea9-942e-426a-9c10-cddf83ce0341%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: problem in activating virtual environment in Django with ". \Scripts\activate" command

2019-01-18 Thread Kuber Sodari
Okay, I see your problem is that you are doing it the wrong way.
Go to the path where you have your virtual environment folder such as 
*cd C:\Python_project\project_name\*
if we suppose I have a virtual environment with a directory as '*venv*' 
created inside my project directory *'project_name'* and then to activate 
this virtual environment, I would do
*venv\Scripts\activate [ENTER]*
Doing this should resolve your problem

On Friday, 18 January 2019 01:03:35 UTC+5:45, Django Geek Aditya wrote:
>
> Shell Output after entering command is
> PS E:\todo> . \Scripts\activate
> . : The term '\Scripts\activate' is not recognized as the name of a 
> cmdlet, function, script file, or operable
> program. Check the spelling of the name, or if a path was included, verify 
> that the path is correct and try again.
> At line:1 char:3
> + . \Scripts\activate
> +   ~
> + CategoryInfo  : ObjectNotFound: (\Scripts\activate:String) 
> [], CommandNotFoundException
> + FullyQualifiedErrorId : CommandNotFoundException
>
> PS E:\todo>
>
>

-- 
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 group, send email to django-users@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/e824da71-0031-4935-81dd-51d79e8cea41%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


RE: problem in activating virtual environment in Django with ". \Scripts\activate" command

2019-01-18 Thread Matthew Pava
I would switch over to pipenv and leave the details to that.

From: django-users@googlegroups.com [mailto:django-users@googlegroups.com] On 
Behalf Of officialjoemay...@gmail.com
Sent: Friday, January 18, 2019 8:04 AM
To: Django users
Subject: Re: problem in activating virtual environment in Django with ". 
\Scripts\activate" command

I had the same issue today, but i was able to fix it. I use windows 10 too. 
Kindly follow this guide to setup your virtualenv:

Step One: This is really important to do because i really don't know what is 
the major cause of this errors but what i discovered in my time is the 
installation right from the start of python itself needs to be properly done. 
So do this uninstall everything that has to do with python, anaconda, any 
python version you have, pycharm and all the likes, also go to your path 
variable and remove any path that show python.

Step Two: Goto https://www.python.org/downloads/ and download V3.7.2 the latest 
version currently on python official website

Step 3: After download, launch the installer ensure you select Add Python 3.6 
to PATH, secondly choose customize ensure all is selected hit next

Step 4: Ensure you select the following

  *   Install for all users
  *   Add Python to environment variables
  *   Create shortcuts for installed applications
  *   Recompile standard library or whatever this one is
Then hit install
Step 5: once installation is completed, launch your powershell or cmd as admin 
and type python -V and hit enter. It should output Python 3.7.2

Step 6: Ensure your powershell is run as admin then run this command 
Set-ExecutionPolicy Unrestricted, follow the instructions and select choose Y 
to update your powershell
Step 7: Follow this code:
cd ~/
mkdir Env
pip install virtualenv
pip freeze (to verify -- output will be virtualenv==version number)
cd ~/Env
mkdir environment
cd environment
virtualenv .
cd ~\Env\environment
.\Scripts\activate

Gotten here nice work! just try pip freeze (would not returning anything at 
this point, this confirm your virtualevn is working fine.)
Having Challenge installing django, hola me

On Thursday, January 17, 2019 at 8:18:35 PM UTC+1, Django Geek Aditya wrote:
Shell Output after entering command is
PS E:\todo> . \Scripts\activate
. : The term '\Scripts\activate' is not recognized as the name of a cmdlet, 
function, script file, or operable
program. Check the spelling of the name, or if a path was included, verify that 
the path is correct and try again.
At line:1 char:3
+ . \Scripts\activate
+   ~
+ CategoryInfo  : ObjectNotFound: (\Scripts\activate:String) [], 
CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException

PS E:\todo>

--
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 group, send email to 
django-users@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/32c3f877-be36-4fc4-8915-18a727803326%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

-- 
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 group, send email to django-users@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/d0fcde0c2b584c5190e30d00e15aa61d%40iss2.ISS.LOCAL.
For more options, visit https://groups.google.com/d/optout.


Re: problem in activating virtual environment in Django with ". \Scripts\activate" command

2019-01-18 Thread officialjoemayami
I had the same issue today, but i was able to fix it. I use windows 10 too. 
Kindly follow this guide to setup your virtualenv:

Step One: This is really important to do because i really don't know what 
is the major cause of this errors but what i discovered in my time is the 
installation right from the start of python itself needs to be properly 
done. So do this uninstall everything that has to do with python, anaconda, 
any python version you have, pycharm and all the likes, also go to your 
path variable and remove any path that show python.

Step Two: Goto https://www.python.org/downloads/ and download V3.7.2 the 
latest version currently on python official website

Step 3: After download, launch the installer ensure you select Add Python 
3.6 to PATH, secondly choose customize ensure all is selected hit next

Step 4: Ensure you select the following 
   
   - Install for all users
   - Add Python to environment variables
   - Create shortcuts for installed applications
   - Recompile standard library or whatever this one is

Then hit install
Step 5: once installation is completed, launch your powershell or cmd as 
admin and type python -V and hit enter. It should output Python 3.7.2

Step 6: Ensure your powershell is run as admin then run this command 
Set-ExecutionPolicy Unrestricted, follow the instructions and select choose 
Y to update your powershell
Step 7: Follow this code:
cd ~/
mkdir Env
pip install virtualenv
pip freeze (to verify -- output will be virtualenv==version number)
cd ~/Env
mkdir environment
cd environment
virtualenv .
cd ~\Env\environment
.\Scripts\activate

Gotten here nice work! just try pip freeze (would not returning anything at 
this point, this confirm your virtualevn is working fine.)
Having Challenge installing django, hola me

On Thursday, January 17, 2019 at 8:18:35 PM UTC+1, Django Geek Aditya wrote:
>
> Shell Output after entering command is
> PS E:\todo> . \Scripts\activate
> . : The term '\Scripts\activate' is not recognized as the name of a 
> cmdlet, function, script file, or operable
> program. Check the spelling of the name, or if a path was included, verify 
> that the path is correct and try again.
> At line:1 char:3
> + . \Scripts\activate
> +   ~
> + CategoryInfo  : ObjectNotFound: (\Scripts\activate:String) 
> [], CommandNotFoundException
> + FullyQualifiedErrorId : CommandNotFoundException
>
> PS E:\todo>
>
>

-- 
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 group, send email to django-users@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/32c3f877-be36-4fc4-8915-18a727803326%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: problem in activating virtual environment in Django with ". \Scripts\activate" command

2019-01-18 Thread Michal Petrucha
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

On Thu, Jan 17, 2019 at 11:14:48AM -0800, Django Geek Aditya wrote:
> Shell Output after entering command is
> PS E:\todo> . \Scripts\activate
> . : The term '\Scripts\activate' is not recognized as the name of a cmdlet, 
> function, script file, or operable
> program. Check the spelling of the name, or if a path was included, verify 
> that the path is correct and try again.
> At line:1 char:3
> + . \Scripts\activate
> +   ~
> + CategoryInfo  : ObjectNotFound: (\Scripts\activate:String) 
> [], CommandNotFoundException
> + FullyQualifiedErrorId : CommandNotFoundException
> 
> PS E:\todo>

Hi Aditya,

The correct incantation for Powershell is

.\Scripts\activate.ps1

The version without any extension, or with .bat, would be correct if
you were running standard Windows cmd instead.

Good luck,

Michal
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJcQc8bAAoJEHA7T/IPM/kl/UwQAOW6VmD4ziMlE0iCWI6cebb5
omFIvG7cR5vT68RyONUiIJVhxOlGhEdkNTvrKsok7Kztp7ncOyK+b5WQgcDe32DS
bl6kJxXSNNSQOfE3KdprOn/5wOYtwdSHH8JNe4R6n/um7kVetjUbnkfraHoFBS5R
J0gKdpBkWEOEjoV/jJThzytvPjE0TgatcYthGLd8lrmAA9QQgIRguYNo+aRvFXv6
2n9uufi3wWLkA8Bv96qADa6vBgSBP6dtBKY3u73M/3U44q/OJO4LAbwYqqsVy032
Y2IGlTozqpFrSuu7yXH4DpCxy3o/WS20NFpmFYyQ9zlQbtldxfbLLQi/PWhi/xfm
bpwvG+InT0LvbYZsroaWBb9BX44ZkaDZMf4b6dVF7r1Unf/Win8YImK+mWxWu+iT
qMpIGAFGeawGuYYACkdw1DdgF7yqyiGYuDcCHCO6TyYVki5jW1nNHQV9Qyp8rcv9
SzH49ftAqn7PX+lXqrOke8G7+/2DMRSexVZoK3cTNMpeCkqwBrkghaBfr5vMGasI
4qNdWuzLiGkFv1lQWmb5Sm9e9eNAy0uFnTSzhsePT1J4Vs9tcr5y0A3/VY2dD8uv
gTZPj/lXcVTj4OetRRzjClhNiEqBAG3ji6wCIZ3yYlss+kHRX9q7Hm8dw7nROP6y
mnJHMuNJZVgxoiywqOX7
=pAUo
-END PGP SIGNATURE-

-- 
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 group, send email to django-users@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/20190118130531.GB8269%40konk.org.
For more options, visit https://groups.google.com/d/optout.


Re: problem in activating virtual environment in Django with ". \Scripts\activate" command

2019-01-18 Thread Django Geek Aditya
I'm using Windows 10

On Friday, January 18, 2019 at 8:39:08 AM UTC+5:30, kannamshivakumar417 
wrote:
>
> Can you tell which os ur using.
>
> On Fri 18 Jan, 2019 12:48 am Django Geek Aditya   wrote:
>
>> Shell Output after entering command is
>> PS E:\todo> . \Scripts\activate
>> . : The term '\Scripts\activate' is not recognized as the name of a 
>> cmdlet, function, script file, or operable
>> program. Check the spelling of the name, or if a path was included, 
>> verify that the path is correct and try again.
>> At line:1 char:3
>> + . \Scripts\activate
>> +   ~
>> + CategoryInfo  : ObjectNotFound: (\Scripts\activate:String) 
>> [], CommandNotFoundException
>> + FullyQualifiedErrorId : CommandNotFoundException
>>
>> PS E:\todo>
>>
>> -- 
>> 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/00a2f79a-0d62-4fd8-8cd4-cd5b9e8d1f2b%40googlegroups.com
>>  
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>

-- 
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 group, send email to django-users@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/1ae6d1eb-ad6d-4458-913a-3ef1ab52e3bc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: problem in activating virtual environment in Django with ". \Scripts\activate" command

2019-01-18 Thread Django Geek Aditya

>
> .\scripts\activate.bat is also not working
>
> THE SHELL OUTPUT IS -> 
PS E:\todo> .\Scripts\activate.bat
.\Scripts\activate.bat : The term '.\Scripts\activate.bat' is not 
recognized as the name of a cmdlet, function, script
file, or operable program. Check the spelling of the name, or if a path was 
included, verify that the path is correct
and try again.
At line:1 char:1
+ .\Scripts\activate.bat
+ ~~
+ CategoryInfo  : ObjectNotFound: 
(.\Scripts\activate.bat:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException

PS E:\todo> 

-- 
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 group, send email to django-users@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/5788d175-95df-4f4b-8e7d-f5bb8c0226cc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: problem in activating virtual environment in Django with ". \Scripts\activate" command

2019-01-17 Thread Phước Thịnh Nguyễn
In Windows, you can active by 'cmd' :D

Vào 02:18:35 UTC+7 Thứ Sáu, ngày 18 tháng 1 năm 2019, Django Geek Aditya đã 
viết:
>
> Shell Output after entering command is
> PS E:\todo> . \Scripts\activate
> . : The term '\Scripts\activate' is not recognized as the name of a 
> cmdlet, function, script file, or operable
> program. Check the spelling of the name, or if a path was included, verify 
> that the path is correct and try again.
> At line:1 char:3
> + . \Scripts\activate
> +   ~
> + CategoryInfo  : ObjectNotFound: (\Scripts\activate:String) 
> [], CommandNotFoundException
> + FullyQualifiedErrorId : CommandNotFoundException
>
> PS E:\todo>
>
>

-- 
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 group, send email to django-users@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/22a0f418-dce2-41a7-90c7-7774e4827854%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: problem in activating virtual environment in Django with ". \Scripts\activate" command

2019-01-17 Thread SATYA PRAKASH BHARTI
Use this command this worked for me. Set-ExecutionPolicy 
Unrestricted

On Friday, January 18, 2019 at 12:48:35 AM UTC+5:30, Django Geek Aditya 
wrote:
>
> Shell Output after entering command is
> PS E:\todo> . \Scripts\activate
> . : The term '\Scripts\activate' is not recognized as the name of a 
> cmdlet, function, script file, or operable
> program. Check the spelling of the name, or if a path was included, verify 
> that the path is correct and try again.
> At line:1 char:3
> + . \Scripts\activate
> +   ~
> + CategoryInfo  : ObjectNotFound: (\Scripts\activate:String) 
> [], CommandNotFoundException
> + FullyQualifiedErrorId : CommandNotFoundException
>
> PS E:\todo>
>
>

-- 
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 group, send email to django-users@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/14c33b8d-47be-4049-806c-97174245b905%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: problem in activating virtual environment in Django with ". \Scripts\activate" command

2019-01-17 Thread shiva kumar
Can you tell which os ur using.

On Fri 18 Jan, 2019 12:48 am Django Geek Aditya  Shell Output after entering command is
> PS E:\todo> . \Scripts\activate
> . : The term '\Scripts\activate' is not recognized as the name of a
> cmdlet, function, script file, or operable
> program. Check the spelling of the name, or if a path was included, verify
> that the path is correct and try again.
> At line:1 char:3
> + . \Scripts\activate
> +   ~
> + CategoryInfo  : ObjectNotFound: (\Scripts\activate:String)
> [], CommandNotFoundException
> + FullyQualifiedErrorId : CommandNotFoundException
>
> PS E:\todo>
>
> --
> 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 group, send email to django-users@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/00a2f79a-0d62-4fd8-8cd4-cd5b9e8d1f2b%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 group, send email to django-users@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/CAMsYeuHMGXx9rteELakC6zyqWGR9tGGMQPQ4m5sN0bEbJaqD%3DQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: problem in activating virtual environment in Django with ". \Scripts\activate" command

2019-01-17 Thread Lutalo Bbosa joseph
if linux, then activating the env is source/bin/activate
after changing to that directory

On Thu, Jan 17, 2019 at 10:22 PM Jorge Gimeno  wrote:

> I assume that's in Windows Powershell. I think it's .\Scripts\activate.bat
>
> I would also check to ensure that the Scripts folder exists in your
> current directory.
>
> -Jorge
>
> On Thu, Jan 17, 2019 at 11:18 AM Django Geek Aditya <
> djangoadi...@gmail.com> wrote:
>
>> Shell Output after entering command is
>> PS E:\todo> . \Scripts\activate
>> . : The term '\Scripts\activate' is not recognized as the name of a
>> cmdlet, function, script file, or operable
>> program. Check the spelling of the name, or if a path was included,
>> verify that the path is correct and try again.
>> At line:1 char:3
>> + . \Scripts\activate
>> +   ~
>> + CategoryInfo  : ObjectNotFound: (\Scripts\activate:String)
>> [], CommandNotFoundException
>> + FullyQualifiedErrorId : CommandNotFoundException
>>
>> PS E:\todo>
>>
>> --
>> 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 group, send email to django-users@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/00a2f79a-0d62-4fd8-8cd4-cd5b9e8d1f2b%40googlegroups.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
> --
> 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 group, send email to django-users@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/CANfN%3DK-vGrj8Q3NxpUoJEv8ebynbsu7N6wVjAwUSTu-JvvyZ%2BA%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 group, send email to django-users@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/CAMz%3Dh%3DTBxqift203D0Tp9meetvbX57DYav%3Dh776kAXOSgsoMOg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: problem in activating virtual environment in Django with ". \Scripts\activate" command

2019-01-17 Thread Jorge Gimeno
I assume that's in Windows Powershell. I think it's .\Scripts\activate.bat

I would also check to ensure that the Scripts folder exists in your current
directory.

-Jorge

On Thu, Jan 17, 2019 at 11:18 AM Django Geek Aditya 
wrote:

> Shell Output after entering command is
> PS E:\todo> . \Scripts\activate
> . : The term '\Scripts\activate' is not recognized as the name of a
> cmdlet, function, script file, or operable
> program. Check the spelling of the name, or if a path was included, verify
> that the path is correct and try again.
> At line:1 char:3
> + . \Scripts\activate
> +   ~
> + CategoryInfo  : ObjectNotFound: (\Scripts\activate:String)
> [], CommandNotFoundException
> + FullyQualifiedErrorId : CommandNotFoundException
>
> PS E:\todo>
>
> --
> 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 group, send email to django-users@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/00a2f79a-0d62-4fd8-8cd4-cd5b9e8d1f2b%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 group, send email to django-users@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/CANfN%3DK-vGrj8Q3NxpUoJEv8ebynbsu7N6wVjAwUSTu-JvvyZ%2BA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: problem in activating virtual environment in Django with ". \Scripts\activate" command

2019-01-17 Thread Danylo K.
try .\scripts\activate.bat


On Thu, Jan 17, 2019 at 2:18 PM Django Geek Aditya 
wrote:

> Shell Output after entering command is
> PS E:\todo> . \Scripts\activate
> . : The term '\Scripts\activate' is not recognized as the name of a
> cmdlet, function, script file, or operable
> program. Check the spelling of the name, or if a path was included, verify
> that the path is correct and try again.
> At line:1 char:3
> + . \Scripts\activate
> +   ~
> + CategoryInfo  : ObjectNotFound: (\Scripts\activate:String)
> [], CommandNotFoundException
> + FullyQualifiedErrorId : CommandNotFoundException
>
> PS E:\todo>
>
> --
> 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 group, send email to django-users@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/00a2f79a-0d62-4fd8-8cd4-cd5b9e8d1f2b%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 group, send email to django-users@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/CADnU5JEQuC__qBQ5K0MBF8Hx-AF9aNhPTyxjh9GELsAs_Nmt3g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.