Basically, I set up a Virtual Box with Ubuntu Server (stable). Installed python 3.5.1, meaning I have 2.7, 3.4.3 and now 3.5.1. I installed virtualenv and had a lot of problems with telling it which interpreter to use, again this is due to my lack of experience. I eventually set it up using:
sudo virtualenv -p /usr/bin/python3.5 fmenv
Now, when I activate it, (after hours of changing things), if I type in:
python
I get a 3.5.1 interpreter, good. If I do:
pip -V
I get:
pip 7.1.2 from /usr/.../fmenv/.../site-packages
also good. By the way, virtualenv is 13.1.2
The problem is that when I run:
sudo python -m pip install django
or simply just:
sudo pip install django
I get a SyntaxError: invalid syntax, (download is good, by the way).
Now I was thinking, maybe with:
sudo python3.5 -m pip install django
it can work, but it says no module named pip, so I tried to manually specify it, that didn't work also. Anyway, thank you in advance for any help.