New release of German language extension textblob-de for the popular textblob package:
See overview of working features compared to main package.
Overview for development branch: Click here.
New release of German language extension textblob-de for the popular textblob package:
See overview of working features compared to main package.
Overview for development branch: Click here.
New release of German language extension textblob-de for the popular textblob package:
See overview of working features compared to main package.
Overview for development branch: Click here.
[Last update: 04/01/2015]
Prerequisites: Install Python and set up virtual environment & Install pip in virtual environment
Tested on: Xubuntu 12.04 LTS / 13.10 / 14.04 LTS (64-bit) with ActivePython installed in /opt
cd ~/venv/apy3341 source bin/activate
pip to install the latest version of nltk:(apy3341):~$ pip install -U nltk
setuptools versions >=10 (see NLTK Issue #824):(apy3341):~$ pip install setuptools==9.1 (apy3341):~$ pip install -U nltk
(apy3341) mki@ubuntu:~$ python ActivePython 3.3.4.1 (ActiveState Software Inc.) based on Python 3.3.4 (default, Feb 25 2014, 14:59:15) [GCC 4.0.2 20051125 (Red Hat 4.0.2-8)] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import nltk >>> nltk.download()
Prerequisites: Install Python and set up virtual environment & Install pip in virtual environment
Tested on: Xubuntu 12.04 LTS / 13.10 / 14.04 LTS (64-bit) with ActivePython installed in /opt
[Last update: 03/07/2014]
cd ~/venv/apy3341 source bin/activate
bin/pip install -U sphinx
bin/pip install -U numpy
bin/pip install -U imapclient
Prerequisites: Install Python and set up virtual environment & Install pip in virtual environment
Tested on: Xubuntu 12.04 LTS / 13.10 / 14.04 LTS (64-bit) with ActivePython installed in /opt
[Last update: 03/07/2014]
cd ~/venv/apy3341 source bin/activate
sudo apt-get install libxml2-dev libxslt1-dev zlib1g zlib1g-dev
bin/pip install -U lxml
Prerequisites: Install Python and set up virtual environment & Install pip in virtual environment
Tested on: Xubuntu 12.04 LTS / 13.10 / 14.04 LTS (64-bit) with ActivePython installed in /opt
[Last update: 03/07/2014]
cd ~/venv/apy3341 source bin/activate
bin/pip install -U ipython
Prerequisites: Install Python and set up virtual environment & Install pip in virtual environment
Tested on: Xubuntu 12.04 LTS / 13.10 / 14.04 LTS (64-bit) with ActivePython installed in /opt
[Last update: 03/07/2014]
cd ~/venv/apy3341 source bin/activate
sudo apt-get install libncurses5-dev
bin/pip install -U readline
[Last update: 03/07/2014]
Prerequisites: Install Python and set up virtual environment
Tested on: Xubuntu 12.04 LTS / 14.04 LTS (64-bit) with ActivePython installed in /opt
cd ~/venv/apy3341 source bin/activate
curl https://bootstrap.pypa.io/get-pip.py > bin/get-pip.py
bin/python bin/get-pip.py
[Last update: 03/07/2014]
My favourite cross-platform binary distribution is ActivePython. Check download area for latest release and adapt version number and platform accordingly.
[Note: If you mainly use Unix-based systems, setting up different Python versions and virtual environments using pyenv might be even more convenient than ActivePython.]
On Ubuntu/Xubuntu 64-bit (12.04 LTS / 14.04 LTS), I use the following commands and install ActivePython in the location /opt/ActivePython-X.X.X.X:
cd /tmp wget http://downloads.activestate.com/ActivePython/releases/3.3.4.1/ActivePython-3.3.4.1-linux-x86_64.tar.gz tar -xvf ActivePython-3.3.4.1-linux-x86_64.tar.gz cd ActivePython-3.3.4.1-linux-x86_64 sudo ./install.sh
Use ActivePython’s pre-configured pyvenv.py script to generate a virtual environment.
cd /opt/ActivePython-3.3.4.1/bin/ ./pyvenv ~/venv/apy3341
cd ~/venv/apy3341 source bin/activate
The name of the activated virtual environment is shown in brackets at the beginning of the commandline prompt:
(apy3341) mki@ubuntu:~$
(apy3341) mki@ubuntu:~$ python ActivePython 3.3.4.1 (ActiveState Software Inc.) based on Python 3.3.4 (default, Sep 16 2013, 23:12:56) [GCC 4.0.2 20051125 (Red Hat 4.0.2-8)] on linux Type "help", "copyright", "credits" or "license" for more information. >>>
(apy3341) mki@ubuntu:~$ deactivate
commandline prompt returns back to normal and system-wide python binaries are used (here Xubuntu 12.04 LTS):
mki@ubuntu:~$ python Python 2.7.3 (default, Sep 26 2013, 20:03:06) [GCC 4.6.3] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>>