Python: Difference between revisions

imported>Krey
imported>Mic92
No edit summary
Line 29: Line 29:
Add <code>virtualenvwrapper</code> to your list of Python packages above. You can use pip safely inside such a virtualenv, most pure Python packages should work.
Add <code>virtualenvwrapper</code> to your list of Python packages above. You can use pip safely inside such a virtualenv, most pure Python packages should work.


<syntaxhighlight lang="shell">
<syntaxhighlight lang="console">
virtualenv my-new-python-venv
$ virtualenv my-new-python-venv
source my-new-python-venv/bin/activate
$ source my-new-python-venv/bin/activate
pip install pandas_datareader # or some other package you want
$ pip install pandas_datareader # or some other package you want
</syntaxhighlight>
</syntaxhighlight>