Skip to content

Commit 1efccfd

Browse files
Advise readers not to use non-ascii characters
1 parent b551176 commit 1efccfd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

en/django_installation/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ To create a new `virtualenv`, you need to open the console (we told you about th
3131

3232
C:\Users\Name\djangogirls> C:\Python34\python -m venv myvenv
3333

34-
where `C:\Python34\python` is the directory in which you previously installed Python and `myvenv` is the name of your `virtualenv`. You can use any other name, but stick to lowercase and use no spaces. It is also good idea to keep the name short - you'll be referencing it a lot!
34+
where `C:\Python34\python` is the directory in which you previously installed Python and `myvenv` is the name of your `virtualenv`. You can use any other name, but stick to lowercase and use no spaces, accents or special characters. It is also good idea to keep the name short - you'll be referencing it a lot!
3535

3636
### Linux and OS X
3737

@@ -97,7 +97,7 @@ Now that you have your `virtualenv` started, you can install Django using `pip`.
9797
Cleaning up...
9898

9999
on Windows
100-
> If you get an error when calling pip on Windows platform please check if your project pathname contains spaces (i.e. `C:\Users\User Name\djangogirls`). If it does please consider moving it to another place without spaces (suggestion is: `C:\djangogirls`). After the move please try the above command again.
100+
> If you get an error when calling pip on Windows platform please check if your project pathname contains spaces, accents or special characters (i.e. `C:\Users\User Name\djangogirls`). If it does please consider moving it to another place without spaces, accents or special characters (suggestion is: `C:\djangogirls`). After the move please try the above command again.
101101
102102
on Linux
103103
> If you get an error when calling pip on Ubuntu 12.04 please run `python -m pip install -U --force-reinstall pip` to fix the pip installation in the virtualenv.

0 commit comments

Comments
 (0)