Re: Issues while creating virtual environment before installing Django

2019-07-17 Thread John P
Give pipenv a try. Simply create the folder your going to use and navigate into that folder. Then use pipenv install django, pipenv shell will load the virtual environment for you. Not sure what's causing the problem but this may make your life simpler. On Wed, Jul 17, 2019, 11:25 AM Mahesh Kum

Re: Issues while creating virtual environment before installing Django

2019-07-17 Thread Yoo
Isn't Python 3.x automatically installed with virtualenv and pip? Try this: virtualenv venv Then, do: cd venv\scripts && activate Then you can start installing packages like this: pip install django On Wednesday, July 17, 2019 at 11:26:04 AM UTC-4, Mahesh Kumar wrote: > > Hi all, > I tried to in

Re: Issues while creating virtual environment before installing Django

2019-07-17 Thread Mike Dewhirst
You can make it easy for yourself by doing a batch file to automate creation of the virtualenv. If you want I can post the one I use. Connected by Motorola Mahesh Kumar wrote: >Hi all, > >I tried to install the Django software in my Laptop command prompt, I have to >create(mkvirtualenv mypr

Issues while creating virtual environment before installing Django

2019-07-17 Thread Mahesh Kumar
Hi all, I tried to install the Django software in my Laptop command prompt, I have to create(mkvirtualenv myproject) virtual evironment. But as soon as I have entered mkvirtualenv myproject, error is looping on and showling below error. Please try to help me, how to create vritual environment. M