I am planning to install a virtual environment for Python in order to keep my Python packages separate. One of the motivations for this is also to have two versions of Python on my machine (Ubuntu 14.04) co-existing. I have the following wonders:
I would like to know experts opinion in order to do things in the right manner and wisely.
Now, how to install Python For Ubuntu 14.04 you will have python2.7 and python3 already installed, with "python" being an alias to python2.7 by default.
Pip you can install with :
sudo apt-get install python-pip python3-pip
I don't know how pip for py2 and pip for py3 coexist but they are available as separated packages.
VirtualEnv You can use pip to install virtualenv:
pip install virtualenv
Here I'm using pip for python2
Once a have all set I do the following:
mkdir -p project_name/source
cd project_name
virtualenv env
I usually keep source and env names constant in every project because I have some hooks around but I recommend you to replace the names, specially "env" because it's the key to know in which VirtualEnv you are working, since you will get something like this:
(env)yser@machine:/home/user/cool_projects/project_name$
I've also keep env out of source to simplify things with version control (no need for marking it for ignoring) but that is just me.
To activate virtualenv:
cd project_name
source env/bin/activate
Now you can pip install inside the VirtualEnv. To change projects exit your current VirtualEnv with:
deactivate
Hope it helps!
yes it's better to use for each python project its virtualenv
1- to create python virtualenv in venv folder use:
>>> cd [your project path]
>>> virtualenv venv
2- you can active your environment by :
>>> source ./venv/bin/active
3- install your requirements packages with pip :
>>> pip install -r <your requirements file>
>>> or pip install <python module>
you can also install your requirements modules without activate the environment
>>> ./venv/bin/pip install <python module>
4- to run your python script use :
>>> python <.py file>
and if you didn't activate your env use :
>>> ./venv/bin/python <.py file>
if you want to manage you python env you have virtual wrapper
Using virtualenv is common amongst Python programmers. These links will be more useful than my answers:
http://www.dabapps.com/blog/introduction-to-pip-and-virtualenv-python/
Yes, it does matter. Pip uses Python, but since Ubuntu comes pre-installed with a version of Python (In your case both 2 and 3 are installed), you shouldn't have to worry about this. But the order would be Python -> PIP -> virtualenv.
Once you cd
in a new, empty project folder, you can create the virtualenv with the Python version of your choice with virtualenv -p /path/to/python/version venv
. You can find the path with which python2
or which python3
.
If I understand your question correctly - yes. The whole point of virtualenv is to keep each project in a separate folder with its own virtualenv set up. Even with a small project, you will just become more familiar with the concept of virtualenv (and maybe even containers like Docker).
I suggest using pyenv. It sits on top of virtualenv and provides an easy way to install different Pythons (cpython, jpython, anaconda, ...) each with its own virtualenvs. Your system's Python is available with an alias system
.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With