Django for Designers/Laptop setup/Linux virtualenv: Difference between revisions

Content added Content deleted
imported>Paulproteus
No edit summary
Line 43: Line 43:
A virtualenv is a limited Python environment that permits you to install whatever Python code you like without impacting other Python programs.
A virtualenv is a limited Python environment that permits you to install whatever Python code you like without impacting other Python programs.


First, we will have to create the virtualenv. In your command prompt, type:
First, we will have to create the virtualenv. In your command prompt, type this command. The '''.''' at the end does matter, so be sure to type it!


<pre>
<pre>
virtualenv env
virtualenv .
</pre>
</pre>


Line 52: Line 52:


<pre>
<pre>
python virtualenv.py env
python virtualenv.py .
</pre>
</pre>